From d5f9a962d628a6a8d93d0587a7a72ed20548c1da Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Mon, 22 Jun 2026 14:29:08 +0200 Subject: [PATCH] add bun --- modules/common/neovim.nix | 3 +++ 1 file changed, 3 insertions(+) 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" ]; } ];