nixos-config/config/services/initrd-ssh.nix

8 lines
145 B
Nix
Raw Normal View History

2022-06-12 15:42:42 +00:00
_: {
2022-04-24 08:43:50 +00:00
boot.initrd.network = {
enable = true;
ssh.enable = true;
2022-06-12 15:39:15 +00:00
ssh.hostKeys = ["/etc/secrets/initrd/ssh_host_ed25519_key"];
2022-04-24 08:43:50 +00:00
};
}