summary refs log tree commit diff stats
path: root/user/settings/ssh.nix
blob: 38a47fad5feb5c9464645ea94820e2c0911c8c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config
, lib
, pkgs
, ...
}: {
  programs.ssh = {
    enable = true;
    compression = true;
    controlMaster = "auto";
    controlPersist = "10m";
    hashKnownHosts = true;
    serverAliveInterval = 15;
  };
}