machine_setup/nix/configuration/hosts/quark/distributed_build.nix

22 lines
288 B
Nix
Raw Normal View History

2025-04-16 20:36:08 -04:00
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = lib.mkMerge [
{
me.distributed_build.enable = true;
me.distributed_build.machines.hydra = {
enable = true;
additional_config = {
2025-04-16 20:36:08 -04:00
speedFactor = 2;
};
};
2025-04-16 20:36:08 -04:00
}
];
}