nixos/home/env/ssh.nix

14 lines
253 B
Nix

{ ... }:
{
imports = [ ./shell ];
programs.ssh = {
enable = true;
includes = [ "config.d/*" ];
forwardAgent = true;
serverAliveInterval = 15;
serverAliveCountMax = 3;
controlMaster = "auto";
controlPersist = "5s";
};
}