feat: move linux-builder to orbstack
Some checks failed
check / check (push) Failing after 12s

This commit is contained in:
winston 2024-09-16 23:37:38 +02:00
parent d9f3008c50
commit 783a628830
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 18 additions and 2 deletions

View file

@ -24,8 +24,6 @@
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.linux-builder.enable = true;
services = {
sketchybar = {
enable = true;

View file

@ -10,4 +10,22 @@
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"
];
}
];
}