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



         




                                                                 
    

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