2023-08-31 01:55:45 +03:00
|
|
|
{ depot, ... }:
|
2022-12-17 21:31:19 +02:00
|
|
|
|
|
|
|
{
|
2021-06-05 23:59:06 +03:00
|
|
|
nix = {
|
2023-03-07 02:25:57 +02:00
|
|
|
package = depot.inputs.nix-super.packages.default;
|
2021-06-05 23:59:06 +03:00
|
|
|
|
2022-12-17 21:31:19 +02:00
|
|
|
settings = {
|
|
|
|
trusted-users = [ "root" "@wheel" "@admins" ];
|
2023-08-31 01:55:45 +03:00
|
|
|
substituters = [ "https://cache.${depot.lib.meta.domain}" ];
|
2022-12-17 21:31:19 +02:00
|
|
|
trusted-public-keys = [ "cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg=" ];
|
|
|
|
};
|
2021-10-16 15:38:51 +03:00
|
|
|
|
2022-12-17 21:31:19 +02:00
|
|
|
extraOptions = ''
|
2023-08-26 23:50:19 +03:00
|
|
|
experimental-features = nix-command flakes cgroups
|
|
|
|
use-cgroups = true
|
2021-06-05 23:59:06 +03:00
|
|
|
builders-use-substitutes = true
|
2023-08-31 01:55:45 +03:00
|
|
|
flake-registry = https://git.${depot.lib.meta.domain}/private-void/registry/-/raw/master/registry.json
|
2022-05-27 16:36:28 +03:00
|
|
|
|
|
|
|
# For Hercules CI agent
|
|
|
|
narinfo-cache-negative-ttl = 0
|
2021-06-05 23:59:06 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
2022-05-29 15:43:38 +03:00
|
|
|
options = "--delete-older-than 7d";
|
2021-06-05 23:59:06 +03:00
|
|
|
};
|
2023-12-01 02:04:39 +02:00
|
|
|
|
|
|
|
daemonCPUSchedPolicy = "batch";
|
|
|
|
daemonIOSchedPriority = 7;
|
2021-06-05 23:59:06 +03:00
|
|
|
};
|
2023-12-01 02:04:39 +02:00
|
|
|
|
2023-12-01 20:10:42 +02:00
|
|
|
systemd.services.nix-daemon = {
|
|
|
|
serviceConfig.Slice = "builder.slice";
|
|
|
|
environment.AWS_EC2_METADATA_DISABLED = "true";
|
|
|
|
};
|
2021-06-05 23:59:06 +03:00
|
|
|
}
|