mirror of
https://github.com/nix-community/flakelight.git
synced 2025-06-21 01:57:57 +02:00
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:
parent
ff24d5d433
commit
87ba2051d3
@ -20,7 +20,7 @@ in
|
|||||||
|
|
||||||
bundlers = mkOption {
|
bundlers = mkOption {
|
||||||
type = nullOr (optFunctionTo (lazyAttrsOf function));
|
type = nullOr (optFunctionTo (lazyAttrsOf function));
|
||||||
default = { };
|
default = null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user