Compare commits
2 commits
fcaf180621
...
1f0cdc71e7
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f0cdc71e7 | |||
| 063b489f1a |
2 changed files with 8 additions and 3 deletions
|
|
@ -174,9 +174,10 @@
|
|||
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) (
|
||||
# lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations
|
||||
# );
|
||||
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations;
|
||||
packages = self.packages;
|
||||
shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -37,12 +37,16 @@ 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