From 5cbe634b5b0def1ec82bc13178fc53977160f691 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 20 Apr 2024 12:24:06 +0100 Subject: [PATCH] Enable ssh password login (but not for root) --- services/sshd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sshd.nix b/services/sshd.nix index e2a38a7c..f430871e 100644 --- a/services/sshd.nix +++ b/services/sshd.nix @@ -5,7 +5,7 @@ settings = { UseDns = true; PermitRootLogin = "no"; - PasswordAuthentication = false; + PasswordAuthentication = true; GatewayPorts = "yes"; LogLevel = "VERBOSE"; };