diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2026-04-06 19:55:12 -0400 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2026-04-06 20:15:40 -0400 |
| commit | 862fbcab1553d76638d874ca01003d01512b869f (patch) | |
| tree | e5a18ca1d44f88bc28cfb4de38dd5a36258baa55 /home.bash_profile | |
| parent | c6eaf34e6a4e1e1e3b316b3edaa4ba39e3451ab8 (diff) | |
- 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.
Diffstat (limited to 'home.bash_profile')
| -rw-r--r-- | home.bash_profile | 5 |
1 files changed, 2 insertions, 3 deletions
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 - |
