nixos/eval-config: Remove a rec

This commit is contained in:
Robert Hensing 2021-12-02 18:11:20 +00:00
parent 59c4a35aab
commit 0b5aea2b27

View file

@ -81,14 +81,15 @@ let
}; };
}; };
in rec { nixosWithUserModules = noUserModules.extendModules { modules = allUserModules; };
in {
# Merge the option definitions in all modules, forming the full # Merge the option definitions in all modules, forming the full
# system configuration. # system configuration.
inherit (noUserModules.extendModules { modules = allUserModules; }) inherit (nixosWithUserModules) config options _module type;
config options _module type;
inherit extraArgs; inherit extraArgs;
inherit (_module.args) pkgs; inherit (nixosWithUserModules._module.args) pkgs;
} }