diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2022-05-07 23:05:05 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2022-05-07 23:05:05 +0200 |
commit | 08fa07618b1d1d40773d1969f31d6d63713f534b (patch) | |
tree | a8d01dcc92f23c0a4a2410116533ffcdab4026d6 /home-dots/dot-profile | |
parent | 9677897ef705177ee0497d1f9f6334700abd262d (diff) | |
download | dotfiles-08fa07618b1d1d40773d1969f31d6d63713f534b.tar.gz dotfiles-08fa07618b1d1d40773d1969f31d6d63713f534b.tar.bz2 dotfiles-08fa07618b1d1d40773d1969f31d6d63713f534b.zip |
move variables from bashrc to profile
Diffstat (limited to 'home-dots/dot-profile')
-rw-r--r-- | home-dots/dot-profile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/home-dots/dot-profile b/home-dots/dot-profile index c2f3182..f156b80 100644 --- a/home-dots/dot-profile +++ b/home-dots/dot-profile @@ -1 +1,8 @@ -. "$HOME/.cargo/env" +#!/bin/sh +export PATH="$HOME/.local/bin:$HOME/dev/dotfiles/bin:$PATH" +[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env +source "$HOME/.cargo/env" +# GUIX_PROFILE="$HOME/.guix-profile" && [ -e "$GUIX_PROFILE" ] && . "$GUIX_PROFILE/etc/profile" && export GUIX_LOCPATH=$GUIX_PROFILE/lib/locale +# GUIX_PROFILE="$HOME/.config/guix/current" && [ -e "$GUIX_PROFILE" ] && . "$GUIX_PROFILE/etc/profile" +# export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs" +# export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" |