nixos/tools/nixos-install: add jq to path

This commit is contained in:
WORLDofPEACE 2020-09-11 13:03:03 -04:00 committed by GitHub
parent ff6c3a9e34
commit a39ad85726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -22,7 +22,11 @@ let
src = ./nixos-install.sh; src = ./nixos-install.sh;
inherit (pkgs) runtimeShell; inherit (pkgs) runtimeShell;
nix = config.nix.package.out; nix = config.nix.package.out;
path = makeBinPath [ pkgs.nixUnstable nixos-enter ]; path = makeBinPath [
pkgs.nixUnstable
pkgs.jq
nixos-enter
];
}; };
nixos-rebuild = nixos-rebuild =