nixfiles/home/shell/ssh.nix

9 lines
157 B
Nix

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