3
0
Fork 0
forked from mirrors/nixpkgs

stage-2-init: Use the host bash as SHELL

This commit is contained in:
Shea Levy 2018-03-01 14:03:41 -05:00
parent 897b7c7e9b
commit 948e290895
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27

View file

@ -10,6 +10,7 @@ let
bootStage2 = pkgs.substituteAll { bootStage2 = pkgs.substituteAll {
src = ./stage-2-init.sh; src = ./stage-2-init.sh;
shellDebug = "${pkgs.bashInteractive}/bin/bash"; shellDebug = "${pkgs.bashInteractive}/bin/bash";
shell = "${pkgs.bash}/bin/bash";
isExecutable = true; isExecutable = true;
inherit (config.nix) readOnlyStore; inherit (config.nix) readOnlyStore;
inherit (config.networking) useHostResolvConf; inherit (config.networking) useHostResolvConf;