diff --git a/shell.nix b/shell.nix index e8b214b..f18b7bf 100644 --- a/shell.nix +++ b/shell.nix @@ -7,7 +7,6 @@ let in { pkgs ? pkgs', ... }: let - configs = "${toString ./.}#nixosConfigurations"; build = "config.system.build"; installPkgs = (import "${nixpkgs}/nixos" { @@ -19,7 +18,7 @@ let if [[ -z "$1" ]]; then echo "Usage: $(basename "$0") [ iso | install {host} | {host} [switch|boot|test] ]" elif [[ "$1" == "iso" ]]; then - nix build ${configs}.niximg.${build}.isoImage "${"\${@:2}"}" + nix build $DEVSHELL_ROOT#nixosConfigurations.niximg.${build}.isoImage "${"\${@:2}"}" elif [[ "$1" == "install" ]]; then sudo nixos-install --flake ".#$2" "${"\${@:3}"}" else