diff options
-rw-r--r-- | configuration.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index c06952d..4e7f513 100644 --- a/configuration.nix +++ b/configuration.nix @@ -56,7 +56,7 @@ services.openssh = { enable = true; openFirewall = true; - passwordAuthentication = false; + settings.passwordAuthentication = false; ports = [ 2211 ]; }; @@ -69,6 +69,11 @@ time.timeZone = "UTC"; users.users = { + axl = { + isNormalUser = true; + openssh.authorizedKeys.keyFiles = [ "/etc/ssh/axl.pub" ]; + }; + ckie = { isNormalUser = true; openssh.authorizedKeys.keyFiles = [ "/etc/ssh/ckie.pub" ]; |