From 6f5de9f1c0f24e3231548bf306f32c719dcfe88f Mon Sep 17 00:00:00 2001 From: syedm Date: Wed, 9 Sep 2026 14:22:57 +0100 Subject: [PATCH] Enable password authentication. --- hosts/syedm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/syedm/default.nix b/hosts/syedm/default.nix index f340148..9c3850b 100644 --- a/hosts/syedm/default.nix +++ b/hosts/syedm/default.nix @@ -14,7 +14,7 @@ services.openssh = { enable = true; settings = { - PasswordAuthentication = false; + PasswordAuthentication = true; PermitRootLogin = "no"; }; };