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