modules/output: expose withPerl

This commit is contained in:
Heitor Augusto 2024-11-13 15:19:35 -03:00
parent e552c984a2
commit 590153d403
No known key found for this signature in database

View file

@ -40,6 +40,12 @@ in
description = "Enable Node provider."; description = "Enable Node provider.";
}; };
withPerl = mkOption {
type = types.bool;
default = false;
description = "Enable Perl provider.";
};
package = mkPackageOption pkgs "Neovim" { package = mkPackageOption pkgs "Neovim" {
default = "neovim-unwrapped"; default = "neovim-unwrapped";
}; };
@ -268,6 +274,7 @@ in
vimAlias vimAlias
withRuby withRuby
withNodeJs withNodeJs
withPerl
; ;
# inherit customRC; # inherit customRC;
inherit plugins; inherit plugins;