nixos: services: ssh-server: persist host keys

This commit is contained in:
Bruno BELANYI 2021-10-22 14:05:42 +02:00
parent 605934d230
commit dd92c987b3

View file

@ -20,6 +20,14 @@ in
}; };
}; };
# Persist SSH keys
my.system.persist.files = [
"/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_ed25519_key.pub"
"/etc/ssh/ssh_host_rsa_key"
"/etc/ssh/ssh_host_rsa_key.pub"
];
# Opens the relevant UDP ports. # Opens the relevant UDP ports.
programs.mosh.enable = true; programs.mosh.enable = true;
}; };