mba: add a minimal ssh setup to linux-builder
1 file changed, 13 insertions(+), 4 deletions(-)
jump to
M system/mba.nix → system/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 -