feat(darwin): enable distributedBuilds
All checks were successful
/ check (push) Successful in 5m9s

This commit is contained in:
winston 2024-09-20 08:58:18 +02:00
parent 6778b8dac3
commit 741b1e72bc
Signed by: winston
GPG key ID: 3786770EDBC2B481

View file

@ -11,21 +11,24 @@
longitude = 16.363449;
};
nix.buildMachines = [
{
hostName = "orb";
sshUser = "nixos";
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"gccarch-armv8-a"
];
systems = [
"aarch64-linux"
"x86_64-linux"
];
}
];
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "orb";
sshUser = "nixos";
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"gccarch-armv8-a"
];
systems = [
"aarch64-linux"
"x86_64-linux"
];
}
];
};
}