all repos — nixfiles @ c666d32db1f8b9aca7c02450cc6a454d850fc1db

System and user configuration, managed by nix and home-manager

mba: remove linux-builder setup
Alan Pearce alan@alanpearce.eu
Wed, 26 Jun 2024 15:31:34 +0200
commit

c666d32db1f8b9aca7c02450cc6a454d850fc1db

parent

3dc6940449d3061ce510ab65dde18ad593102a4c

1 files changed, 0 insertions(+), 23 deletions(-)

jump to
M system/mba.nixsystem/mba.nix
@@ -37,27 +37,4 @@ speedFactor = 1;       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" ];
-  };
 }