wrapper/lazy: add beforeSetup option

Useful for avoiding a million require calls in setupOpts.
This commit is contained in:
diniamo 2024-12-20 10:43:36 +01:00
parent 99a4eafa34
commit ed69816f68
2 changed files with 10 additions and 0 deletions

View file

@ -76,6 +76,7 @@
else
mkLuaInline ''
function()
${optionalString (spec.beforeSetup != null) spec.beforeSetup}
${
optionalString (spec.setupModule != null)
"require(${toJSON spec.setupModule}).setup(${toLuaObject spec.setupOpts})"

View file

@ -74,6 +74,15 @@
'';
};
beforeSetup = mkOption {
type = nullOr lines;
default = null;
description = ''
Lua code to run after the plugin is loaded, but before the setup
function is called.
'';
};
setupModule = mkOption {
type = nullOr str;
default = null;