summary refs log tree commit diff stats
path: root/system/services/opensshd
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-07-03 15:09:12 +0200
committerSoispha <soispha@vhack.eu>2023-07-03 18:31:05 +0200
commit99d4b3b910bff6811b10a91d355e7bcddc956e4c (patch)
tree65b556b0b269271bb6a8c14b6b8c91d4d800c908 /system/services/opensshd
parentFix(system/services/mail): Tell git-crypt new users.nix location (diff)
downloadnixos-server-99d4b3b910bff6811b10a91d355e7bcddc956e4c.tar.gz
nixos-server-99d4b3b910bff6811b10a91d355e7bcddc956e4c.zip
Fix(system/services/openssh): Rename to 'openssh' as the 'd' is a typo
Diffstat (limited to 'system/services/opensshd')
-rw-r--r--system/services/opensshd/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/services/opensshd/default.nix b/system/services/opensshd/default.nix
deleted file mode 100644
index 1bb37ee..0000000
--- a/system/services/opensshd/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{...}: {
-  services.openssh = {
-    enable = true;
-    settings.PasswordAuthentication = false;
-    hostKeys = [
-      {
-        path = "/srv/sshd/ssh_host_ed25519_key";
-        rounds = 1000;
-        type = "ed25519";
-      }
-    ];
-  };
-}