From 4c978e0ccbed6e6a7fdaa2cde21f3951aa0a8ab8 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 2 Aug 2024 22:40:47 +0200 Subject: refactor(nixos/openssh): Migrate from `system/services` --- system/services/default.nix | 1 - system/services/openssh/default.nix | 17 ----------------- 2 files changed, 18 deletions(-) delete mode 100644 system/services/openssh/default.nix (limited to 'system') diff --git a/system/services/default.nix b/system/services/default.nix index 3155272..52ad177 100644 --- a/system/services/default.nix +++ b/system/services/default.nix @@ -11,7 +11,6 @@ ./miniflux ./murmur ./nix - ./openssh ./restic ./rust-motd ./taskserver diff --git a/system/services/openssh/default.nix b/system/services/openssh/default.nix deleted file mode 100644 index 46b7ffd..0000000 --- a/system/services/openssh/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{...}: { - services.openssh = { - enable = true; - settings.PasswordAuthentication = false; - hostKeys = [ - { - # See the explanation for this in /system/impermanence/mods/openssh.nix - # path = "/var/lib/sshd/ssh_host_ed25519_key"; - - # FIXME: Remove this workaround - path = "/srv/var/lib/sshd/ssh_host_ed25519_key"; - rounds = 1000; - type = "ed25519"; - } - ]; - }; -} -- cgit 1.4.1