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

8 lines
149 B
Nix
Raw Normal View History

2022-06-12 15:39:15 +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
};
}