dotfiles/machines/sashimi/default.nix

35 lines
569 B
Nix
Raw Permalink Normal View History

{
2024-05-07 18:20:52 +02:00
imports = [ ./brew.nix ];
2023-02-20 08:58:46 +01:00
2023-10-05 09:11:28 +02:00
nix.settings.extra-platforms = [
"aarch64-darwin"
"x86_64-darwin"
];
2024-02-15 18:49:22 +01:00
location = {
latitude = 48.210033;
longitude = 16.363449;
};
2024-09-16 23:37:38 +02:00
2024-09-20 08:58:18 +02:00
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "orb";
sshUser = "nixos";
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"gccarch-armv8-a"
];
systems = [
"aarch64-linux"
"x86_64-linux"
];
}
];
};
}