diff options
-rw-r--r-- | dotfiles/.bash_profile | 5 | ||||
-rw-r--r-- | dotfiles/.bashrc | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/dotfiles/.bash_profile b/dotfiles/.bash_profile index 35827ef..bc424ab 100644 --- a/dotfiles/.bash_profile +++ b/dotfiles/.bash_profile @@ -29,7 +29,8 @@ export EDITOR=emacsclient # Guile export GUILE_LOAD_PATH="/home/dave/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_PATH" -export GUILE_LOAD_COMPILED_PATH="/home/dave/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_COMPILED_PATH" + export GUILE_LOAD_COMPILED_PATH="/home/dave/.guix-profile/lib/guile/2.0/ccache:/home/dave/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_COMPILED_PATH" + # Ruby export GEM_PATH="$HOME/.guix-profile/lib/ruby/gems/2.2.0" @@ -37,6 +38,8 @@ export GEM_PATH="$HOME/.guix-profile/lib/ruby/gems/2.2.0" # Guix export GUIX_PACKAGE_PATH="$HOME/Code/guix-custom" +export TERMINFO_DIRS="/home/dave/.guix-profile/share/terminfo" + # Extra configuration needed on non-GuixSD systems. if ! guixsd then diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index a49f5c6..73e4ee3 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -36,7 +36,7 @@ shopt -s globstar # Add special decoration when we are in a Guix environment sub-shell. if [ -n "$GUIX_ENVIRONMENT" ] then - export PS1="[dev] \u@\h \w\$ " + export PS1="[dev $SHLVL] \u@\h \w\$ " else export PS1='\u@\h \w\$ ' fi |