configuration.nix/home/programs/ssh.nix
2023-11-01 18:53:50 +05:30

8 lines
128 B
Nix

_: {
programs.ssh = {
enable = true;
compression = true;
controlMaster = "yes";
hashKnownHosts = true;
};
}