Personal Nix setup

Add ssh config

Changed files
+16
home
+1
home/base/default.nix
···
./shell.nix
./tmux.nix
./xdg.nix
+
./ssh.nix
];
}
+15
home/base/ssh.nix
···
+
{ lib, ... }:
+
+
with lib;
+
{
+
programs.ssh = {
+
enable = true;
+
compression = true;
+
serverAliveCountMax = 5;
+
serverAliveInterval = 60;
+
matchBlocks."*" = {
+
extraOptions.IPQoS = "none";
+
setEnv.TERM = "xterm";
+
};
+
};
+
}