diff --git a/modules/nix-config/services.nix b/modules/nix-config/services.nix index 3390813..2626779 100644 --- a/modules/nix-config/services.nix +++ b/modules/nix-config/services.nix @@ -2,5 +2,14 @@ { services = { pcscd.enable = true; + openssh = { + enable = true; + hostKeys = [ + { + path = "/etc/ssh/ssh_host_ed25519_key"; + type = "ed25519"; + } + ]; + }; }; }