From e2701dcdf4f9a47549fbd3478a049fbfda9fde92 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Thu, 23 Oct 2025 13:43:26 +0200 Subject: [PATCH] Set executable permission for equibop.desktop and update bash.nix Add BUN_INSTALL env var and include Bun bin in PATH --- config/autostart/equibop.desktop | 0 config/bash.nix | 2 ++ 2 files changed, 2 insertions(+) mode change 100644 => 100755 config/autostart/equibop.desktop diff --git a/config/autostart/equibop.desktop b/config/autostart/equibop.desktop old mode 100644 new mode 100755 diff --git a/config/bash.nix b/config/bash.nix index 9829313..063eb1c 100644 --- a/config/bash.nix +++ b/config/bash.nix @@ -39,6 +39,7 @@ export STARSHIP_ENABLE_RIGHT_PROMPT="true" export STARSHIP_ENABLE_BASH_COMPLETION="true" export XDG_DATA_DIRS="/usr/share:/var/lib/flatpak/exports/share:${config.home.homeDirectory}/.local/share/flatpak/exports/share" + export BUN_INSTALL="$HOME/.bun" # Source .profile (If exists) if [ -f "${config.home.homeDirectory}/.profile" ]; then @@ -212,6 +213,7 @@ export PATH="$PATH:${config.home.homeDirectory}/.cargo/bin" export PATH="$PATH:${config.home.homeDirectory}/.dotfiles/bin" export PATH="/usr/bin:$PATH" + export PATH="$BUN_INSTALL/bin:$PATH" # PKG_CONFIG_PATH if [ -d /usr/lib/pkgconfig ]; then