From 0f307f910ea246f6adee6f76df1a1aa7f91d6a6f Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 21 Apr 2024 10:08:23 +0200 Subject: mba: add a minimal ssh setup to linux-builder --- system/mba.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/system/mba.nix b/system/mba.nix index eb273c5e..43599eed 100644 --- a/system/mba.nix +++ b/system/mba.nix @@ -1,5 +1,4 @@ -{ ... -}: { +{ inputs, ... }: { imports = [ ./settings/darwin.nix ./settings/programs/base.nix @@ -48,8 +47,18 @@ }; 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 - -- cgit 1.4.1