mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
nixos/eval-config: Remove a rec
This commit is contained in:
parent
59c4a35aab
commit
0b5aea2b27
|
@ -81,14 +81,15 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
in rec {
|
||||
nixosWithUserModules = noUserModules.extendModules { modules = allUserModules; };
|
||||
|
||||
in {
|
||||
|
||||
# Merge the option definitions in all modules, forming the full
|
||||
# system configuration.
|
||||
inherit (noUserModules.extendModules { modules = allUserModules; })
|
||||
config options _module type;
|
||||
inherit (nixosWithUserModules) config options _module type;
|
||||
|
||||
inherit extraArgs;
|
||||
|
||||
inherit (_module.args) pkgs;
|
||||
inherit (nixosWithUserModules._module.args) pkgs;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue