nixos: services: ssh-server: persist host keys

This commit is contained in:
Bruno BELANYI 2021-10-22 14:05:42 +02:00
parent 2f3b9950e1
commit 4e2055da7f

View file

@ -20,6 +20,13 @@ in
};
};
# Persist SSH keys
my.system.persist.files =
let
pubAndPrivKey = key: [ key.path "${key.path}.pub" ];
in
lib.concatMap pubAndPrivKey config.services.openssh.hostKeys;
# Opens the relevant UDP ports.
programs.mosh.enable = true;
};