machine_setup/nix/configuration/hosts/odowork/distributed_build.nix
Tom Alexander eebbf9f4aa
Automatically set distributed build's supportedFeatures based on that host's actual config.
Previously, we had two copies of the supported features for each host.
2025-11-19 22:42:43 -05:00

14 lines
214 B
Nix

{
imports = [ ];
config = {
me.distributed_build.enable = true;
me.distributed_build.machines.quark = {
enable = true;
additional_config = {
speedFactor = 2;
};
};
};
}