Evie Litherland-Smith
52ff1c36a3
Move root user home-config into home/default.nix so that it's used by all Removed personal/work specific things from root user
12 lines
230 B
Nix
12 lines
230 B
Nix
{...}: {
|
|
programs.ssh = {
|
|
enable = true;
|
|
forwardAgent = true;
|
|
serverAliveInterval = 15;
|
|
serverAliveCountMax = 3;
|
|
controlMaster = "auto";
|
|
controlPersist = "1s";
|
|
matchBlocks."git*".user = "git";
|
|
};
|
|
}
|