From 6a25f88ee869df89660fc52b70a1f14d1fd35573 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Mon, 26 Feb 2024 14:33:39 +0100 Subject: [PATCH] feat(dgn-ssh): Increase allowed connexions --- modules/dgn-ssh.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/dgn-ssh.nix b/modules/dgn-ssh.nix index 9bca405..706338a 100644 --- a/modules/dgn-ssh.nix +++ b/modules/dgn-ssh.nix @@ -52,8 +52,11 @@ in enable = true; settings = { - PasswordAuthentication = false; KbdInteractiveAuthentication = false; + LoginGraceTime = "30"; + MaxSessions = "64"; + MaxStartups = "64"; + PasswordAuthentication = false; }; };