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