diff options
author | polwex <polwex@sortug.com> | 2025-01-03 21:09:56 +0000 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-01-03 21:09:56 +0000 |
commit | 7e18c6df8d03daebd90adf86e0c59911ed5b0658 (patch) | |
tree | b0e397dcc323b9cc833373dab238a05eaa464604 | |
parent | f1e80864b8f44d55079a269fbce7fb08a290cf4a (diff) |
s15
-rw-r--r-- | hosts/local/s15/configuration.nix | 1 | ||||
-rw-r--r-- | hosts/server.nix | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/hosts/local/s15/configuration.nix b/hosts/local/s15/configuration.nix index ad0c57a..a913983 100644 --- a/hosts/local/s15/configuration.nix +++ b/hosts/local/s15/configuration.nix @@ -27,6 +27,7 @@ in { ../../users.nix ../../editors.nix ../../pkgs.nix + ../../server.nix ../../gpg.nix ]; environment.systemPackages = [ diff --git a/hosts/server.nix b/hosts/server.nix index 5c76b5d..fc0dc7a 100644 --- a/hosts/server.nix +++ b/hosts/server.nix @@ -1,7 +1,7 @@ {...}: { services.openssh = { enable = true; - settings.PasswordAuthentication = false; + settings.PasswordAuthentication = true; ports = [5522]; }; users.users.root.openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+qXhCHNrSZmy4HEXaFn6xAp1w2GzQBMOfVdbR3E81Q cloudboxes"]; |