Files
nixos-config/modules/user/ssh.nix
T
2026-03-15 18:09:30 +03:00

12 lines
164 B
Nix

{
programs.ssh = {
enable = true;
matchBlocks = {
"*" = {
ServerAliveInterval = 30;
ServerAliveCountMax = 5;
};
};
};
}