Slightly increase SSH ControlMaster time, add AddKeysToAgent option

This commit is contained in:
Evie Litherland-Smith 2023-07-05 14:42:46 +01:00
parent 8c194f20d8
commit eb50b23465

View file

@ -5,7 +5,10 @@
serverAliveInterval = 15; serverAliveInterval = 15;
serverAliveCountMax = 3; serverAliveCountMax = 3;
controlMaster = "auto"; controlMaster = "auto";
controlPersist = "1s"; controlPersist = "10s";
matchBlocks."git*".user = "git"; matchBlocks."git*".user = "git";
extraConfig = ''
AddKeysToAgent=yes
'';
}; };
} }