diff --git a/modules/common/neovim.nix b/modules/common/neovim.nix index 9429af8..111c837 100644 --- a/modules/common/neovim.nix +++ b/modules/common/neovim.nix @@ -68,12 +68,15 @@ in home.sessionVariables.PNPM_HOME = if config.isDarwin then "$HOME/Library/pnpm" else "$HOME/.local/share/pnpm"; + home.sessionVariables.BUN_INSTALL = "$HOME/.bun"; + home.sessionPath = [ "node_modules/.bin" "/opt/homebrew/bin" "/opt/homebrew/opt" "$HOME/.npm-packages/bin" "$PNPM_HOME" + "$BUN_INSTALL/bin" ]; } ];