dotfiles/machines/sashimi/default.nix
winston 783a628830
Some checks failed
check / check (push) Failing after 12s
feat: move linux-builder to orbstack
2024-09-16 23:37:38 +02:00

31 lines
494 B
Nix

{
imports = [ ./brew.nix ];
nix.settings.extra-platforms = [
"aarch64-darwin"
"x86_64-darwin"
];
location = {
latitude = 48.210033;
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"
];
}
];
}