From c3bcb27b19fa39c1e143ee7c7d0246462b8e1998 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Wed, 23 Oct 2024 01:22:27 +0200 Subject: [PATCH] fix(nodejs): Disable nodejs because of a failing build TODO: Figure out whether some plugin still needs it --- nix/mkNeovim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/mkNeovim.nix b/nix/mkNeovim.nix index 959a7fb..2b64c00 100644 --- a/nix/mkNeovim.nix +++ b/nix/mkNeovim.nix @@ -20,7 +20,7 @@ with lib; extraPython3Packages ? p: [], # Additional python 3 packages withPython3 ? true, # Build Neovim with Python 3 support? withRuby ? false, # Build Neovim with Ruby support? - withNodeJs ? true, # Build Neovim with NodeJS support? + withNodeJs ? false, # Build Neovim with NodeJS support? withSqlite ? true, # Add sqlite? This is a dependency for some plugins # You probably don't want to create vi or vim aliases # if the appName is something different than "nvim"