ssh: keepalive

This commit is contained in:
2026-03-15 18:09:30 +03:00
parent bd00472f1b
commit 8b9b21669d
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -11,6 +11,7 @@
./user/neofetch.nix ./user/neofetch.nix
./user/qt.nix ./user/qt.nix
./user/sops.nix ./user/sops.nix
./user/ssh.nix
./user/waybar.nix ./user/waybar.nix
./user/yazi.nix ./user/yazi.nix
./user/zsh.nix ./user/zsh.nix
+11
View File
@@ -0,0 +1,11 @@
{
programs.ssh = {
enable = true;
matchBlocks = {
"*" = {
ServerAliveInterval = 30;
ServerAliveCountMax = 5;
};
};
};
}