diff options
| -rw-r--r-- | home.bash_profile | 5 | ||||
| -rw-r--r-- | home.bashrc | 3 |
2 files changed, 5 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 - diff --git a/home.bashrc b/home.bashrc index 09703c9..a4f7813 100644 --- a/home.bashrc +++ b/home.bashrc @@ -1,3 +1,6 @@ +# Add local binaries to PATH +export PATH="$HOME/.local/bin:$PATH" + source <(jj util completion bash) eval "$(zoxide init bash)" |
