1
1
forked from extern/flakelight

Fix bundlers default value

The incorrect default value of bundlers was causing the attributes to be
exported in flakes not using bundlers.
This commit is contained in:
Archit Gupta 2023-11-21 22:15:52 -08:00
parent ff24d5d433
commit 87ba2051d3

View File

@ -20,7 +20,7 @@ in
bundlers = mkOption {
type = nullOr (optFunctionTo (lazyAttrsOf function));
default = { };
default = null;
};
};