Files
nixos-config/modules/user/ssh.nix
T

12 lines
164 B
Nix
Raw Normal View History

2026-03-15 18:09:30 +03:00
{
programs.ssh = {
enable = true;
matchBlocks = {
"*" = {
ServerAliveInterval = 30;
ServerAliveCountMax = 5;
};
};
};
}