From 1356d5205035560394f6e9e3578209f78bc95dba Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Tue, 25 Jun 2024 21:34:34 +0700 Subject: [PATCH] openssh: disable KbdInteractiveAuthentication --- system/modules/openssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/system/modules/openssh.nix b/system/modules/openssh.nix index 97f12b4..78b30fa 100644 --- a/system/modules/openssh.nix +++ b/system/modules/openssh.nix @@ -11,6 +11,7 @@ in enable = true; settings = { PasswordAuthentication = false; + KbdInteractiveAuthentication = false; UseDns = true; X11Forwarding = false; PermitRootLogin = "no";