nixos: services: ssh-server: persist host keys
This commit is contained in:
parent
2f3b9950e1
commit
4e2055da7f
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue