Personal Nix setup
0
fork

Configure Feed

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

Update ssh config

+12 -3
+12 -3
home/base/ssh.nix
··· 4 4 { 5 5 programs.ssh = { 6 6 enable = true; 7 - compression = true; 8 - serverAliveCountMax = 5; 9 - serverAliveInterval = 60; 7 + enableDefaultConfig = false; 10 8 matchBlocks."*" = { 9 + forwardAgent = false; 10 + addKeysToAgent = "no"; 11 + hashKnownHosts = false; 12 + userKnownHostsFile = "~/.ssh/known_hosts"; 13 + controlMaster = "no"; 14 + controlPath = "~/.ssh/master-%r@%n:%p"; 15 + controlPersist = "no"; 16 + 17 + compression = true; 18 + serverAliveInterval = 60; 19 + serverAliveCountMax = 5; 11 20 extraOptions.IPQoS = "none"; 12 21 setEnv.TERM = "xterm"; 13 22 };