all repos — nixfiles @ e8463e792a824fd220b66339e381e4843a692344

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

mba: use linux-builder in place of custom lima setup
Alan Pearce alan@alanpearce.eu
Sun, 10 Mar 2024 12:37:18 +0100
commit

e8463e792a824fd220b66339e381e4843a692344

parent

64cf82a5dacb4b3e298172c05d8561c1289c3281

2 files changed, 15 insertions(+), 13 deletions(-)

jump to
M system/mba.nixsystem/mba.nix
@@ -26,19 +26,18 @@ cores = 4;     auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
   };
 
-  nix.buildMachines = [
-    {
-      hostName = "lima-nixos";
-      system = "aarch64-linux";
-      sshUser = "nix-remote";
-      sshKey = "/var/root/.ssh/nix-remote";
-      protocol = "ssh-ng";
-      maxJobs = 4;
-      supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
-      mandatoryFeatures = [ ];
-    }
-  ];
-  nix.distributedBuilds = true;
+  nix.linux-builder = {
+    maxJobs = 4;
+    config = {
+      virtualisation = {
+        darwin-builder = {
+          diskSize = 60 * 1024;
+          memorySize = 8 * 1024;
+        };
+        cores = 4;
+      };
+    };
+  };
 }
 # vim: sw=2 sts=2 expandtab autoindent smarttab
 
M system/settings/darwin.nixsystem/settings/darwin.nix
@@ -20,6 +20,9 @@ settings.experimental-features = "nix-command flakes";     settings.warn-dirty = false;
     settings.keep-outputs = true;
     settings.keep-derivations = true;
+
+    linux-builder.enable = true;
+    settings.trusted-users = [ "@admin" ];
   };
 
   nixpkgs.config = {