From 184d58b5b592176d83c4b18ea4bf2c352b971afe Mon Sep 17 00:00:00 2001 From: Jermeiah S Date: Tue, 1 Jul 2025 21:35:18 -0400 Subject: [PATCH] fix: openssh start when need is not compat with deployrs --- modules/nixos/common/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/common/ssh.nix b/modules/nixos/common/ssh.nix index 0533109..0b289fd 100644 --- a/modules/nixos/common/ssh.nix +++ b/modules/nixos/common/ssh.nix @@ -5,7 +5,7 @@ services.openssh = { enable = true; settings.PasswordAuthentication = false; - startWhenNeeded = true; + # startWhenNeeded = true; }; security = { sudo.execWheelOnly = true;