From b731bedfb9a75f9d25da4d8e97a95f03eb863274 Mon Sep 17 00:00:00 2001 From: Michael Franzl Date: Tue, 7 May 2024 09:45:32 +0200 Subject: [PATCH] expose withRuby option --- wrappers/modules/output.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wrappers/modules/output.nix b/wrappers/modules/output.nix index 2d62ecb0..661adb3f 100644 --- a/wrappers/modules/output.nix +++ b/wrappers/modules/output.nix @@ -24,6 +24,12 @@ with lib; ''; }; + withRuby = mkOption { + type = types.bool; + default = true; + description = "Enable Ruby provider."; + }; + withNodeJs = mkOption { type = types.bool; default = false; @@ -88,6 +94,7 @@ with lib; extraPython3Packages viAlias vimAlias + withRuby withNodeJs ; # inherit customRC;