nixos-config/modules/home/cli/controlpersist.nix
Sridhar Ratnakumar f6bd6847c4 controlpersist
2026-03-23 20:50:31 -04:00

15 lines
336 B
Nix

{ ... }:
let
controlMasterOpts = {
ControlMaster = "auto";
ControlPath = "~/.ssh/sockets/%r@%h-%p";
ControlPersist = "900";
};
in
{
programs.ssh.matchBlocks = {
"pureintent".extraOptions = controlMasterOpts;
"sincereintent".extraOptions = controlMasterOpts;
"zest".extraOptions = controlMasterOpts;
};
}