From 27fe99a85d5348f21a8b5b7edeb92e06a644ec82 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Thu, 16 Jul 2020 15:17:12 -0600 Subject: [PATCH] shell.nix: pass command line options to build-iso --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 07a8ae87..4e165c6f 100644 --- a/shell.nix +++ b/shell.nix @@ -3,7 +3,7 @@ let configs = "${toString ./.}#nixosConfigurations"; buildIso = pkgs.writeShellScriptBin "build-iso" '' - nix build ${configs}.niximg.config.system.build.isoImage + nix build ${configs}.niximg.config.system.build.isoImage $@ ''; in pkgs.mkShell { nativeBuildInputs = with pkgs; [ git git-crypt nixFlakes buildIso ];