nixfiles/kat/shell/ssh.nix
2023-07-18 10:37:18 -07:00

9 lines
157 B
Nix

_: {
programs.ssh = {
enable = true;
controlMaster = "auto";
controlPersist = "10m";
hashKnownHosts = true;
compression = true;
};
}