From 1344cf0c3e3e6d59759e90608437e31fa3dcf220 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 12 Aug 2024 06:39:12 -0400 Subject: [PATCH] system(ssh): Disable keyboard interactive authentication Not necessary since we're using key pairs 100% now. --- modules/system.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system.nix b/modules/system.nix index f32602e0..6e0ec4ca 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -271,6 +271,7 @@ in settings = { PasswordAuthentication = false; + KbdInteractiveAuthentication = false; }; }; };