nix machine / user configurations
1{ 2 programs.ssh = { 3 enable = true; 4 compression = true; 5 hashKnownHosts = true; 6 addKeysToAgent = "yes"; 7 # Only needed for darcs hub 8 # extraConfig = '' 9 # Host hub.darcs.net 10 # ControlMaster no 11 # ForwardAgent no 12 # ForwardX11 no 13 # Ciphers +aes256-cbc 14 # MACs +hmac-sha1 15 # ''; 16 }; 17 services.ssh-agent.enable = true; 18}