Compare commits

..

No commits in common. "1f0cdc71e7658a76b06c8ef8c76eec69bb0a896f" and "fcaf180621277b15b023ebe38dd3602550a0940e" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View file

@ -174,10 +174,9 @@
self = inputs.self; self = inputs.self;
hydraJobs = { hydraJobs = {
# hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) ( hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) (
# lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations
# ); );
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations;
packages = self.packages; packages = self.packages;
shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells; shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells;
}; };

View file

@ -37,16 +37,12 @@ in
max-jobs = "auto"; max-jobs = "auto";
cores = 0; cores = 0;
}; };
daemonIOSchedClass = lib.mkDefault "idle";
daemonCPUSchedPolicy = lib.mkDefault "idle";
}; };
systemd.services.nix-daemon.serviceConfig = { systemd.services.nix-daemon.serviceConfig = {
MemoryAccounting = true; MemoryAccounting = true;
MemoryMax = "90%"; MemoryMax = "90%";
OOMScoreAdjust = 500; OOMScoreAdjust = 500;
Slice = "-.slice";
}; };
}; };
} }