diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/mba.nix | 17 |
1 files 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 - |