We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 479aead commit 3b60756Copy full SHA for 3b60756
wrapperModules/n/neovim/module.nix
@@ -448,8 +448,8 @@ in
448
'';
449
};
450
config = lib.mkOption {
451
- type = types.lines;
452
- default = "";
+ type = types.nullOr types.lines;
+ default = null;
453
description = ''
454
A snippet of config for this spec.
455
wrapperModules/n/neovim/normalize.nix
@@ -223,7 +223,7 @@ in
223
{
224
inherit hasFennel mappedSpecs;
225
infoPluginInitMain = lib.pipe mappedSpecs [
226
- (builtins.filter (v: v.config or null != null))
+ (builtins.filter (v: v.config or null != null && v.config or "" != ""))
227
(map (
228
v:
229
let
0 commit comments