From 63774a34f5fd7e21a7cd6ab191e85c018b977f8c Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 10 Dec 2025 19:48:32 +1100 Subject: [PATCH] fix: options have been renamed in latest release --- hosts/server/configuration.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index 8854a0d..6d595e5 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -27,9 +27,7 @@ # hardened openssh services.openssh = { - passwordAuthentication = false; - allowSFTP = false; - challengeResponseAuthentication = false; + allowSFTP = false; extraConfig = '' AllowTcpForwarding yes X11Forwarding no @@ -37,6 +35,10 @@ AllowStreamLocalForwarding no AuthenticationMethods publickey ''; + settings = { + KbdInteractiveAuthentication = false; + PasswordAuthentication = false; + }; }; system.stateVersion = "24.11";