nixpkgs: always provide the option definitions

This allows evaluation of configurations where nixpkgs.* options are
used even when in a flake setup with unchanged default values.
This commit is contained in:
Tobias Happ 2021-12-10 22:26:02 +01:00 committed by Alexander Sosedkin
parent 7b9ba13632
commit 8972fbf3da
4 changed files with 36 additions and 11 deletions

View file

@ -18,6 +18,7 @@ let
{
_module.args.home-manager = home-manager;
_module.args.pkgs = mkDefault pkgs;
_module.args.isFlake = isFlake;
}
configModule
] ++ import ./module-list.nix { inherit pkgs isFlake; };