all repos — nixfiles @ dd1d104d8bcfd23791bb8d3e0bdf2f689e627476

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

mba: set linux-builder.config to a function to avoid import

Alan Pearce
commit

dd1d104d8bcfd23791bb8d3e0bdf2f689e627476

parent

abddacaec51754d8d5b368510a25640d1d31cf31

1 file changed, 3 insertions(+), 5 deletions(-)

jump to
M system/mba.nixsystem/mba.nix
@@ -1,4 +1,4 @@
-{ inputs, ... }: { +{ ... }: { imports = [ ./settings/darwin.nix ./settings/programs/base.nix
@@ -39,7 +39,7 @@ ];
nix.linux-builder = { maxJobs = 4; - config = { + config = { pkgs, ... }: { virtualisation = { darwin-builder = { diskSize = 60 * 1024;
@@ -52,9 +52,7 @@ imports = [
./settings/configuration/user.nix ./settings/programs/shell.nix ]; - environment.systemPackages = with (import inputs.nixpkgs { - system = "aarch64-linux"; - }); [ + environment.systemPackages = with pkgs; [ kitty.terminfo hello ];