20 lines
348 B
Nix
20 lines
348 B
Nix
|
|
{
|
||
|
|
imports = [ ];
|
||
|
|
|
||
|
|
config = {
|
||
|
|
me.distributed_build.enable = true;
|
||
|
|
me.distributed_build.machines.hydra = {
|
||
|
|
enable = true;
|
||
|
|
additional_config = {
|
||
|
|
speedFactor = 2;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
me.distributed_build.machines.quark = {
|
||
|
|
enable = true;
|
||
|
|
additional_config = {
|
||
|
|
speedFactor = 2;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|