about summary refs log blame commit diff stats
path: root/home-manager/config/ssh/default.nix
blob: f572d1e3937cb54f8b00ca04d08bd3803a3e8314 (plain) (tree)
1
2
3
4
5
6
7
8
                

                       
                           
                              
                                                                  
    

           
{config, ...}: {
  programs.ssh = {
    enable = true;
    compression = true;
    hashKnownHosts = false;
    serverAliveInterval = 240;
    userKnownHostsFile = "${config.xdg.dataHome}/ssh/known_hosts";
  };
}
# vim: ts=2