From ee1ca68cdf9af3b581d86703ff2d9138a667dba7 Mon Sep 17 00:00:00 2001 From: quirinecker Date: Sun, 30 Aug 2026 14:01:46 +0200 Subject: [PATCH] removed npm install section for global dependencies. This was hacky to begin with and has to reworked either way --- modules/editor/neovim.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/editor/neovim.nix b/modules/editor/neovim.nix index ab66ff6..e4f19ef 100644 --- a/modules/editor/neovim.nix +++ b/modules/editor/neovim.nix @@ -61,8 +61,9 @@ "nvim/projects".source = config.lib.file.mkOutOfStoreSymlink ./neovim/projects; }; - home.activation.npm-install = lib.hm.dag.entryAfter [ "writeBoundary" ] '' - nix-shell -p nodejs --run "cd ${configHome}/.npm_global && npm install" - ''; + # Todo: fix vue language server + # home.activation.npm-install = lib.hm.dag.entryAfter [ "writeBoundary" ] '' + # nix-shell -p nodejs --run "cd ${configHome}/.npm_global && npm install" + # ''; }; }