about summary refs log tree commit diff stats
path: root/home-manager/ssh/default.nix
blob: 506c36be3f4d67c1b6c5b8117168cb748dd948cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  pkgs,
  ...
}: {
  programs.ssh = {
    enable = true;
    compression = true;
    hashKnownHosts = true;
    serverAliveInterval = 240;
    userKnownHostsFile = "${config.xdg.dataHome}/ssh/know_hosts";

  };
}
# vim: ts=2