From 591d110120c96038c224638228fe8d3344e0ba71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chl=C3=B3e=20Kassandra=20Rei=C3=9F?= Date: Tue, 21 Apr 2026 12:44:42 +0200 Subject: [PATCH] Update ssh to make it future proof --- system-environment/ssh.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/system-environment/ssh.nix b/system-environment/ssh.nix index 819bb9f..c38499c 100644 --- a/system-environment/ssh.nix +++ b/system-environment/ssh.nix @@ -5,7 +5,12 @@ in { programs.ssh = { enable = true; - enableDefaultConfig = true; + enableDefaultConfig = false; + + matchBlocks."*" = { + compression = true; + serverAliveInterval = 60; + }; extraConfig = '' Host git.nickr.eu