From e417ad358c00251094c2df039f6ec82c0851efaf Mon Sep 17 00:00:00 2001 From: Jimbo Date: Tue, 10 Sep 2024 14:50:31 -0400 Subject: [PATCH] Disable PAM auth on SSH --- nixos/services/openssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/services/openssh.nix b/nixos/services/openssh.nix index fe6db48..63699ac 100644 --- a/nixos/services/openssh.nix +++ b/nixos/services/openssh.nix @@ -7,6 +7,7 @@ PermitRootLogin = "no"; PrintLastLog = "no"; PasswordAuthentication = false; + UsePAM = false; }; };