summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-06-26 15:31:34 +0200
committerAlan Pearce2024-06-26 19:26:36 +0200
commitc666d32db1f8b9aca7c02450cc6a454d850fc1db (patch)
tree7361e9ba26ee877b5c7644ed2a782f6ce3e94353
parent3dc6940449d3061ce510ab65dde18ad593102a4c (diff)
downloadnixfiles-c666d32db1f8b9aca7c02450cc6a454d850fc1db.tar.lz
nixfiles-c666d32db1f8b9aca7c02450cc6a454d850fc1db.tar.zst
nixfiles-c666d32db1f8b9aca7c02450cc6a454d850fc1db.zip
mba: remove linux-builder setup
-rw-r--r--system/mba.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/system/mba.nix b/system/mba.nix
index abed520b..ca1b76d8 100644
--- a/system/mba.nix
+++ b/system/mba.nix
@@ -37,27 +37,4 @@
       supportedFeatures = [ ];
     }
   ];
-
-  nix.linux-builder = {
-    maxJobs = 4;
-    config = { pkgs, ... }: {
-      virtualisation = {
-        darwin-builder = {
-          diskSize = 60 * 1024;
-          memorySize = 8 * 1024;
-        };
-        cores = 4;
-      };
-      # don't go crazy with this setup, it rebuilds the VM
-      imports = [
-        ./settings/configuration/user.nix
-        ./settings/programs/shell.nix
-      ];
-      environment.systemPackages = with pkgs; [
-        kitty.terminfo
-        hello
-      ];
-    };
-    systems = [ "aarch64-linux" ];
-  };
 }