From 87ba2051d32b807948c5e225903691b273e69b4c Mon Sep 17 00:00:00 2001 From: Archit Gupta Date: Tue, 21 Nov 2023 22:15:52 -0800 Subject: [PATCH] Fix bundlers default value The incorrect default value of bundlers was causing the attributes to be exported in flakes not using bundlers. --- builtinModules/bundlers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtinModules/bundlers.nix b/builtinModules/bundlers.nix index d723b6c..0aa8392 100644 --- a/builtinModules/bundlers.nix +++ b/builtinModules/bundlers.nix @@ -20,7 +20,7 @@ in bundlers = mkOption { type = nullOr (optFunctionTo (lazyAttrsOf function)); - default = { }; + default = null; }; };