From d90f0abf5c083d433390cc0bb00c674b33c50aee Mon Sep 17 00:00:00 2001 From: genofire Date: Sun, 23 Jan 2022 22:43:00 +0100 Subject: [PATCH] nixos/default: rename openssh.kbdInteractiveAuthentication --- nixos/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/default.nix b/nixos/default.nix index 8d94dce..7cdd73c 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -17,7 +17,7 @@ services.openssh = { enable = true; passwordAuthentication = false; - challengeResponseAuthentication = false; + kbdInteractiveAuthentication = false; permitRootLogin = "without-password"; openFirewall = true; ports = [ 1512 ];