diff --git a/common/default.nix b/common/default.nix index 81a7423..dd503b1 100644 --- a/common/default.nix +++ b/common/default.nix @@ -8,10 +8,10 @@ ./misc.nix ./nginx.nix ./nix.nix - ./openssh.nix ./packages.nix ./sanoid.nix ./security.nix + ./ssh.nix ./steam.nix ]; -} \ No newline at end of file +} diff --git a/common/openssh.nix b/common/ssh.nix similarity index 85% rename from common/openssh.nix rename to common/ssh.nix index 195277e..43f9e30 100644 --- a/common/openssh.nix +++ b/common/ssh.nix @@ -1,11 +1,11 @@ { config, lib, pkgs, ... }: { - services.openssh = { + programs.ssh = { enable = true; settings = { PasswordAuthentication = false; PermitRootLogin = "no"; }; }; -} \ No newline at end of file +}