From f36bf9914a4feb218ade0eaef82963db98eb46bd Mon Sep 17 00:00:00 2001 From: willemml Date: Sat, 11 Nov 2023 04:10:01 -0800 Subject: [PATCH] Fixes renamed nixos ssh password auth setting --- nixos/profiles/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/profiles/default.nix b/nixos/profiles/default.nix index 58f2316..d5fe8e9 100644 --- a/nixos/profiles/default.nix +++ b/nixos/profiles/default.nix @@ -29,7 +29,7 @@ services.udev.enable = true; services.openssh.enable = true; - services.openssh.passwordAuthentication = false; + services.openssh.settings.PasswordAuthentication = false; system.stateVersion = "23.05";