From 9704b56498119f940894460621f030e1eb78bc7c Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sun, 31 Jan 2021 22:34:27 +0100 Subject: [PATCH] ControlMaster=auto, not yes --- modules/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ssh.nix b/modules/ssh.nix index dc203e52..c869fa24 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -16,7 +16,7 @@ let programs.ssh = { enable = true; compression = true; - controlMaster = "yes"; + controlMaster = "auto"; controlPersist = "10m"; hashKnownHosts = true; userKnownHostsFile = "${config.chvp.cachePrefix}${home}/.ssh/known_hosts";