dotfiles/machines/sashimi/default.nix
winston 741b1e72bc
All checks were successful
/ check (push) Successful in 5m9s
feat(darwin): enable distributedBuilds
2024-09-20 08:58:18 +02:00

34 lines
569 B
Nix

{
imports = [ ./brew.nix ];
nix.settings.extra-platforms = [
"aarch64-darwin"
"x86_64-darwin"
];
location = {
latitude = 48.210033;
longitude = 16.363449;
};
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "orb";
sshUser = "nixos";
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"gccarch-armv8-a"
];
systems = [
"aarch64-linux"
"x86_64-linux"
];
}
];
};
}