nixos: Fix pkgs exporting

This needs adjustment after dcdd232939232d04c1132b4cc242dd3dac44be8c

Changed files
+2 -2
nixos
+2 -2
nixos/lib/eval-config.nix
···
args = extraArgs;
specialArgs =
{ modulesPath = builtins.toString ../modules; } // specialArgs;
-
}) config options;
+
}) config options _module;
# These are the extra arguments passed to every module. In
# particular, Nixpkgs is passed through the "pkgs" argument.
···
inherit baseModules extraModules modules;
};
-
inherit (config._module.args) pkgs;
+
inherit (_module.args) pkgs;
}