From 3d3d5badb2bea11fd546ad16b645f54ff9a02b5b Mon Sep 17 00:00:00 2001 From: alyx Date: Sun, 27 Jul 2025 00:02:52 +0100 Subject: [PATCH] woops, turn off password auth ssh, forgot i had it temp on on umbriel --- base/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/ssh.nix b/base/ssh.nix index 23100a1..ac56d08 100644 --- a/base/ssh.nix +++ b/base/ssh.nix @@ -3,7 +3,7 @@ services.openssh = { enable = true; settings = { - PasswordAuthentication = true; + PasswordAuthentication = false; KbdInteractiveAuthentication = false; }; };