From 40286bf9b0ac6bb8d390f27568cd54970747a56e Mon Sep 17 00:00:00 2001 From: Aaron Adams Date: Mon, 4 Mar 2024 05:59:53 +0800 Subject: [PATCH] expose withNodeJs option (#1198) --- wrappers/modules/output.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wrappers/modules/output.nix b/wrappers/modules/output.nix index e1c6a2fd..74e7ed55 100644 --- a/wrappers/modules/output.nix +++ b/wrappers/modules/output.nix @@ -22,6 +22,12 @@ with lib; { ''; }; + withNodeJs = mkOption { + type = types.bool; + default = false; + description = "Enable Node provider."; + }; + package = mkOption { type = types.package; default = pkgs.neovim-unwrapped; @@ -84,6 +90,7 @@ with lib; { extraPython3Packages viAlias vimAlias + withNodeJs ; # inherit customRC; plugins = normalizedPlugins;