From f39b5569935090c32dea023a80e8967dc1f9c365 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 23 May 2024 14:56:27 +0300 Subject: [PATCH] Change SSH control master path --- modules/ssh/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ssh/default.nix b/modules/ssh/default.nix index 80d3a59..d6cbc7e 100644 --- a/modules/ssh/default.nix +++ b/modules/ssh/default.nix @@ -14,6 +14,7 @@ (homeConfiguration { programs.ssh = enabled { controlMaster = "auto"; + controlPath = "~/.ssh/control/%r@%n:%p"; controlPersist = "60m"; serverAliveCountMax = 2; serverAliveInterval = 60;