From e5cd9bd98e162f191d71dd3a03eac3cd777f752d Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 24 Oct 2025 15:19:35 +0100 Subject: [PATCH] Enable password login through ssh. --- common/sshd.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/sshd.nix b/common/sshd.nix index 45790c6..fc5b89f 100644 --- a/common/sshd.nix +++ b/common/sshd.nix @@ -3,8 +3,6 @@ enable = true; allowSFTP = true; settings = { - PasswordAuthentication = false; - KbdInteractiveAuthentication = false; PermitRootLogin = "prohibit-password"; # Allow root login with SSH keys only }; };