Compare commits
No commits in common. "1f0cdc71e7658a76b06c8ef8c76eec69bb0a896f" and "fcaf180621277b15b023ebe38dd3602550a0940e" have entirely different histories.
1f0cdc71e7
...
fcaf180621
2 changed files with 3 additions and 8 deletions
|
|
@ -174,10 +174,9 @@
|
|||
self = inputs.self;
|
||||
|
||||
hydraJobs = {
|
||||
# hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) (
|
||||
# lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations
|
||||
# );
|
||||
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations;
|
||||
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) (
|
||||
lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations
|
||||
);
|
||||
packages = self.packages;
|
||||
shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -37,16 +37,12 @@ in
|
|||
max-jobs = "auto";
|
||||
cores = 0;
|
||||
};
|
||||
|
||||
daemonIOSchedClass = lib.mkDefault "idle";
|
||||
daemonCPUSchedPolicy = lib.mkDefault "idle";
|
||||
};
|
||||
|
||||
systemd.services.nix-daemon.serviceConfig = {
|
||||
MemoryAccounting = true;
|
||||
MemoryMax = "90%";
|
||||
OOMScoreAdjust = 500;
|
||||
Slice = "-.slice";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue