diff --git a/modules/sshd.nix b/modules/sshd.nix index 01b757a..a046574 100644 --- a/modules/sshd.nix +++ b/modules/sshd.nix @@ -23,6 +23,12 @@ UseDns = false; X11Forwarding = false; }; + hostKeys = [ + { + path = "/etc/ssh/ssh_host_ed25519_key"; + type = "ed25519"; + } + ]; authorizedKeysFiles = lib.mkForce [ "/etc/ssh/authorized_keys.d/%u" ]; }; }