From 590153d40354f6c12f3060f2b74eef98bb59a663 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Wed, 13 Nov 2024 15:19:35 -0300 Subject: [PATCH] modules/output: expose `withPerl` --- modules/top-level/output.nix | 7 +++++++ 1 file changed, 7 insertions(+) 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;