Closed talyz closed 2 years ago
For the purpose of bisectability, could you split this into
fixMergeModules
definition and avoids the deprecated args. This still includes moduleArgs._module.check = false
. That should make it purely refactoring.moduleArgs._module.check = false
, which is not a pure refactoring, but a change in behavior that is probably good.Done!
Thank you!
fixMergeModules
is deprecated and using it produces deprecation warning messages in newer revisions of nixpkgs. Since it's implemented as a simple wrapper aroundevalModules
, let's just useevalModules
instead and set the module arguments throughconfig._module.args
.Fixes #1507