This should enable me to have local build jobs without rebuilding stuff that already exists on the build VM server.
15 lines
379 B
Nix
15 lines
379 B
Nix
{
|
|
imports = [ ];
|
|
|
|
config = {
|
|
me.distributed_build.enable = true;
|
|
me.distributed_build.machines.hydra = {
|
|
enable = true;
|
|
additional_config = {
|
|
speedFactor = 2;
|
|
};
|
|
substituter_url = "ssh-ng://nixworker@ns1.fizz.buzz:65122?compress=true&ssh-key=/persist/manual/ssh/root/keys/id_ed25519&remote-store=local?root=/.disk/root";
|
|
};
|
|
};
|
|
}
|