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

8 lines
153 B
Nix
Raw Normal View History

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