Răsfoiți Sursa

fix(meili): disabled linux builder

Zander Hawke 4 luni în urmă
părinte
comite
16a391409f
1 a modificat fișierele cu 18 adăugiri și 4 ștergeri
  1. 18 4
      hosts/meili/default.nix

+ 18 - 4
hosts/meili/default.nix

@@ -10,10 +10,18 @@
 
   # NOTE: might be valuable to put this in it's own file
   nix.linux-builder = {
-    enable = true;
-    systems = [ "aarch64-linux" "x86_64-linux" ];
+    enable = false;
+    systems = [
+      "aarch64-linux"
+      "x86_64-linux"
+    ];
     ephemeral = true;
-    supportedFeatures = [ "kvm" "benchmark" "big-parallel" "nixos-test" ];
+    supportedFeatures = [
+      "kvm"
+      "benchmark"
+      "big-parallel"
+      "nixos-test"
+    ];
     maxJobs = 4;
     config = {
       # Enable x86_64 emulation
@@ -28,7 +36,13 @@
       };
     };
   };
-  nix.settings.system-features = [ "nixos-test" "apple-virt" "benchmark" "big-parallel" "kvm" ];
+  nix.settings.system-features = [
+    "nixos-test"
+    "apple-virt"
+    "benchmark"
+    "big-parallel"
+    "kvm"
+  ];
   # nix.settings.extra-platforms = [ "aarch64-linux" ];
   # launchd.daemons.linux-builder = {
   #   serviceConfig = {