From d100a4e9943420b7a4ccb900964034171fcc29fb Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Wed, 13 Nov 2024 15:23:33 -0300 Subject: [PATCH] modules/output: expose `withPython3` --- 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 a3dd73a4..9e61256e 100644 --- a/modules/top-level/output.nix +++ b/modules/top-level/output.nix @@ -46,6 +46,12 @@ in description = "Enable Perl provider."; }; + withPython3 = mkOption { + type = types.bool; + default = true; + description = "Enable Python 3 provider."; + }; + package = mkPackageOption pkgs "Neovim" { default = "neovim-unwrapped"; }; @@ -275,6 +281,7 @@ in withRuby withNodeJs withPerl + withPython3 ; # inherit customRC; inherit plugins;