all: stop including user configs

This commit is contained in:
Aaron Bieber 2022-10-04 09:36:47 -06:00
parent 00a515f5be
commit d5d2e76317
No known key found for this signature in database

View File

@ -29,9 +29,6 @@ in {
extraGroups = [ "wheel" ];
};
environment.systemPackages =
if isUnstable then [ goVersion pkgs.yash ] else [ goVersion ];
programs.ssh = {
startAgent = true;
agentTimeout = "100m";
@ -41,11 +38,13 @@ in {
CanonicalizeHostname always
Host *
controlmaster auto
controlpath /tmp/ssh-%r@%h:%p
Include host_config
controlmaster auto
controlpath /tmp/ssh-%r@%h:%p
'';
};
environment.systemPackages =
if isUnstable then [ goVersion pkgs.yash ] else [ goVersion ];
};
}