summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-08-10 13:36:07 -0400
committerAmin Bandali <bandali@gnu.org>2019-08-10 13:36:07 -0400
commit09b0be0bc8af645e6c9020f89da68e9cfc897d0a (patch)
tree009f7df59feed4a31a370897cc0bc5d0d73baeec
parent39bd31c6da6bb7ae65fb5ce7400a9747e5c1ed6f (diff)
downloadconfigs-09b0be0bc8af645e6c9020f89da68e9cfc897d0a.tar.gz
configs-09b0be0bc8af645e6c9020f89da68e9cfc897d0a.tar.xz
configs-09b0be0bc8af645e6c9020f89da68e9cfc897d0a.zip
shell: fix up profile to correctly use user’s local guix
Diffstat (limited to '')
-rw-r--r--.profile5
1 files changed, 2 insertions, 3 deletions
diff --git a/.profile b/.profile
index 89951ab..d726093 100644
--- a/.profile
+++ b/.profile
@@ -13,7 +13,8 @@ export VISUAL="emcl"
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH"
if [ -z "$IS_GUIX_SYSTEM" ]; then
- PATH="$HOME/.guix-profile/bin:$HOME/.guix-profile/sbin${PATH:+:}$PATH"
+ PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH"
+ export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale"
fi
export PATH
@@ -39,8 +40,6 @@ fi
if [ -z "$IS_GUIX_SYSTEM" ]; then
# if guix is installed
if [ -x "$(command -v guix)" ]; then
- export GIT_EXEC_PATH="$HOME/.guix-profile/libexec/git-core"
- export PASSWORD_STORE_SYSTEM_EXTENSION_DIR="$HOME/.guix-profile/lib/password-store/extensions${PASSWORD_STORE_SYSTEM_EXTENSION_DIR:+:}$PASSWORD_STORE_SYSTEM_EXTENSION_DIR"
GUIX_PROFILE="$HOME/.guix-profile"
. "$GUIX_PROFILE/etc/profile"
fi