Files

13 lines
194 B
Nix
Raw Permalink Normal View History

2026-03-15 18:09:30 +03:00
{
programs.ssh = {
enable = true;
enableDefaultConfig = false;
2026-05-29 14:37:41 +03:00
settings = {
2026-03-15 18:09:30 +03:00
"*" = {
serverAliveInterval = 30;
serverAliveCountMax = 5;
};
};
};
}