diff --git a/modules/top-level/output.nix b/modules/top-level/output.nix index 030ef2d7..a3dd73a4 100644 --- a/modules/top-level/output.nix +++ b/modules/top-level/output.nix @@ -40,6 +40,12 @@ in description = "Enable Node provider."; }; + withPerl = mkOption { + type = types.bool; + default = false; + description = "Enable Perl provider."; + }; + package = mkPackageOption pkgs "Neovim" { default = "neovim-unwrapped"; }; @@ -268,6 +274,7 @@ in vimAlias withRuby withNodeJs + withPerl ; # inherit customRC; inherit plugins;