nixos/tools/nixos-install: add jq to path
This commit is contained in:
parent
ff6c3a9e34
commit
a39ad85726
|
@ -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 =
|
||||||
|
|
Loading…
Reference in New Issue