mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
bootstrap: ensure that the correct pkgs instance is used
This commit is contained in:
parent
52efd98b5e
commit
3114584c57
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