mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
bootstrap: ensure that the correct pkgs instance is used
This commit is contained in:
parent
ccbb8db229
commit
c98413b056
1 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,10 @@ let
|
|||
pkgs = nixpkgs;
|
||||
|
||||
extraModules = [ ../modules/build/initial-build.nix ];
|
||||
extraSpecialArgs = { inherit customPkgs; };
|
||||
extraSpecialArgs = {
|
||||
inherit customPkgs;
|
||||
pkgs = nixpkgs.lib.mkForce nixpkgs; # to override ./modules/nixpkgs/config.nix
|
||||
};
|
||||
|
||||
config = {
|
||||
# Fix invoking bash after initial build.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue