From e6d4bf0cdf5ea8bfc0309daeb3afbad20c9cd4e7 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 16 Sep 2025 09:52:12 -0500 Subject: [PATCH] Fix SSH config for new module --- home/baseline/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/baseline/ssh.nix b/home/baseline/ssh.nix index c2c79df..bcc607e 100644 --- a/home/baseline/ssh.nix +++ b/home/baseline/ssh.nix @@ -9,7 +9,6 @@ }; programs.ssh = { enable = true; - serverAliveInterval = 60; includes = [ "config.local" ]; @@ -27,6 +26,7 @@ "*" = { dynamicForwards = [ { port = 10240; } ]; + serverAliveInterval = 60; extraOptions.LogLevel = "error"; };