blob: 0c8300eba7d378844029632b3bf7e878f3109549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, pkgs, ... }:
{
programs.ssh = {
enable = true;
compression = true;
controlMaster = "auto";
controlPersist = "10m";
hashKnownHosts = true;
serverAliveInterval = 15;
};
}
|