about summary refs log tree commit diff stats
path: root/home-manager/config/ssh/default.nix
blob: 6ce3a7f7b6b9c65e261147c4cc4705f3d85566d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
{config, ...}: {
  programs.ssh = {
    enable = true;
    compression = true;
    hashKnownHosts = false;
    serverAliveInterval = 240;
    userKnownHostsFile = "${config.xdg.dataHome}/ssh/known_hosts";
  };
}