From 427333c2aa14a6eb9460a962cf4662b8aae23649 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Mon, 1 Jul 2024 13:21:26 +0200 Subject: [PATCH] workaround for the cve https://github.com/NixOS/nixpkgs/pull/323753#issuecomment-2199762128 --- modules/services/ssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/services/ssh.nix b/modules/services/ssh.nix index 1c769c8..068cfa1 100644 --- a/modules/services/ssh.nix +++ b/modules/services/ssh.nix @@ -74,6 +74,7 @@ in { settings = { PasswordAuthentication = false; PermitRootLogin = "no"; + LoginGraceTime = 0; }; }; })