From c003878c6e0b67b9a43ad2f15608be035d813637 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 14 Feb 2026 12:39:04 +0100 Subject: [PATCH] add pnpm --- modules/common/neovim.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/common/neovim.nix b/modules/common/neovim.nix index 977009f..6f49a90 100644 --- a/modules/common/neovim.nix +++ b/modules/common/neovim.nix @@ -36,6 +36,7 @@ in nodejs nodePackages."sass" + pnpm_9 ] ++ optionals config.onLinux [ #gcc_multi @@ -64,10 +65,13 @@ in }; # TODO: the two from the last (below) should be somehow moved to their own files + home.sessionVariables.PNPM_HOME = "$HOME/Library/pnpm"; + home.sessionPath = [ "node_modules/.bin" "/opt/homebrew/bin" "$HOME/.npm-packages/bin" + "$PNPM_HOME" ]; } ];