puter/common/ssh.nix

9 lines
161 B
Nix
Raw Normal View History

2024-02-04 20:51:11 +00:00
{lib, ...}: {
programs.ssh.startAgent = true;
environment.etc."ssh/ssh_config".text = lib.mkAfter ''
Compression yes
ServerAliveInterval 60
'';
}