Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add ssh config

+16
+1
home/base/default.nix
··· 7 7 ./shell.nix 8 8 ./tmux.nix 9 9 ./xdg.nix 10 + ./ssh.nix 10 11 ]; 11 12 }
+15
home/base/ssh.nix
··· 1 + { lib, ... }: 2 + 3 + with lib; 4 + { 5 + programs.ssh = { 6 + enable = true; 7 + compression = true; 8 + serverAliveCountMax = 5; 9 + serverAliveInterval = 60; 10 + matchBlocks."*" = { 11 + extraOptions.IPQoS = "none"; 12 + setEnv.TERM = "xterm"; 13 + }; 14 + }; 15 + }