From 862fbcab1553d76638d874ca01003d01512b869f Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Mon, 6 Apr 2026 19:55:12 -0400 Subject: feat(bash): enable jj in login shells - Uncomment .bashrc sourcing in home.bash_profile for login shells - Add ~/.local/bin to PATH in home.bashrc before jj completion loading This ensures jj (Jujutsu) is available and supports tab completion in TTY and SSH sessions where login shells were previously not sourcing .bashrc. --- home.bash_profile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'home.bash_profile') diff --git a/home.bash_profile b/home.bash_profile index 947876c..83bae9e 100644 --- a/home.bash_profile +++ b/home.bash_profile @@ -1,8 +1,8 @@ # # Set up Guix Home profile # if [ -f ~/.profile ]; then . ~/.profile; fi -# # Honor per-interactive-shell startup file -# if [ -f ~/.bashrc ]; then . ~/.bashrc; fi +# Honor per-interactive-shell startup file +if [ -f ~/.bashrc ]; then . ~/.bashrc; fi # Merge search-paths from multiple profiles, the order matters. eval "$(guix package --search-paths \ @@ -15,4 +15,3 @@ eval "$(guix package --search-paths \ export PATH=/run/setuid-programs:$PATH # User specific environment and startup programs - -- cgit