From afb50e97d3fa59bbfae46f0c5927386678122e93 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 8 Aug 2023 14:03:17 -0600 Subject: [PATCH] [NixOS] Fix password authentication setting --- nixos/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/ssh.nix b/nixos/ssh.nix index cf84ece1..5321e2ed 100644 --- a/nixos/ssh.nix +++ b/nixos/ssh.nix @@ -19,7 +19,7 @@ services.openssh = { enable = true; settings = { - passwordAuthentication = false; + PasswordAuthentication = false; }; }; }