blob: 55a608b90ca074e2dbeb6c6c238d45f90ace6cab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{ hostName, config, pkgs, ... }:
{
config = {
boot.initrd.network = {
enable = true;
ssh = {
enable = true;
hostKeys = with config.sops.secrets; [ initrd_ssh_host_rsa_key.path initrd_ssh_host_ed25519_key.path ];
authorizedKeys = config.users.users.root.openssh.authorizedKeys.keys ++ map (kF: builtins.readFile kF) config.users.users.root.openssh.authorizedKeys.keyFiles;
};
};
sops.secrets = {
initrd_ssh_host_rsa_key = {
key = "rsa";
path = "/etc/initrd-ssh/ssh_host_rsa_key";
sopsFile = ./host-keys + "/${hostName}-private.yaml";
};
initrd_ssh_host_ed25519_key = {
key = "ed25519";
path = "/etc/initrd-ssh/ssh_host_ed25519_key";
sopsFile = ./host-keys + "/${hostName}-private.yaml";
};
};
environment.etc =
let
mkPubkey = typ: pkgs.runCommand "initrd_ssh_host_${typ}_key" { buildInputs = with pkgs; [ yq ]; } ''
yq -r '.${typ}' ${./host-keys + "/${hostName}-public.yaml"} > $out
'';
in {
"initrd-ssh/ssh_host_rsa_key.pub".source = mkPubkey "rsa";
"initrd-ssh/ssh_host_ed25519_key.pub".source = mkPubkey "ed25519";
};
};
}
|