diff options
Diffstat (limited to 'services/opensshd.nix')
-rw-r--r-- | services/opensshd.nix | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/services/opensshd.nix b/services/opensshd.nix deleted file mode 100644 index cb9f2ba..0000000 --- a/services/opensshd.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - config, - pkg, - ... -}: { - services.openssh = { - enable = true; - passwordAuthentication = false; - hostKeys = [ - { - comment = "key comment"; - path = "/srv/sshd/ssh_host_ed25519_key"; - rounds = 1000; - type = "ed25519"; - } - ]; - }; -} |