modules/output: expose withPython3

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

View file

@ -46,6 +46,12 @@ in
description = "Enable Perl provider."; description = "Enable Perl provider.";
}; };
withPython3 = mkOption {
type = types.bool;
default = true;
description = "Enable Python 3 provider.";
};
package = mkPackageOption pkgs "Neovim" { package = mkPackageOption pkgs "Neovim" {
default = "neovim-unwrapped"; default = "neovim-unwrapped";
}; };
@ -275,6 +281,7 @@ in
withRuby withRuby
withNodeJs withNodeJs
withPerl withPerl
withPython3
; ;
# inherit customRC; # inherit customRC;
inherit plugins; inherit plugins;