all repos — nixfiles @ 0f307f910ea246f6adee6f76df1a1aa7f91d6a6f

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

mba: add a minimal ssh setup to linux-builder
Alan Pearce alan@alanpearce.eu
Sun, 21 Apr 2024 10:08:23 +0200
commit

0f307f910ea246f6adee6f76df1a1aa7f91d6a6f

parent

ed2b8a359bf46d2fd3ebe337a84b0058d95d6ac6

1 files changed, 13 insertions(+), 4 deletions(-)

jump to
M system/mba.nixsystem/mba.nix
@@ -1,5 +1,4 @@-{ ...
-}: {
+{ inputs, ... }: {
   imports = [
     ./settings/darwin.nix
     ./settings/programs/base.nix
@@ -48,8 +47,18 @@ 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 (import inputs.nixpkgs {
+        system = "aarch64-linux";
+      }); [
+        kitty.terminfo
+        hello
+      ];
     };
+    systems = [ "aarch64-linux" ];
   };
 }
-# vim: sw=2 sts=2 expandtab autoindent smarttab
-