nixos/home/ssh/common.nix

13 lines
240 B
Nix
Raw Normal View History

{ ... }:
{
programs.ssh = {
enable = true;
forwardAgent = true;
serverAliveInterval = 15;
serverAliveCountMax = 3;
controlMaster = "auto";
controlPersist = "1s";
2023-05-16 13:08:57 +01:00
matchBlocks = { "git.*".user = "git"; };
};
}