diff options
author | Camil Staps | 2021-06-27 21:50:25 +0200 |
---|---|---|
committer | Camil Staps | 2021-06-27 21:50:25 +0200 |
commit | e5a3325173642316cf01a3ca185ad32f385a29b3 (patch) | |
tree | 2fbd47ad12a0c0a33e6246b788856ec4deb74ae5 | |
parent | Fix ghci; use nvim (diff) |
Add nix to profile; cleanup .profile
-rw-r--r-- | system/.profile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/system/.profile b/system/.profile index 8758222..429ac48 100644 --- a/system/.profile +++ b/system/.profile @@ -16,7 +16,8 @@ export PATH="$PATH:$CLEAN_HOME/bin" export PATH="$HOME/bin:$PATH" export PATH="$HOME/bin.local:$PATH" -[ -f "/home/camil/.ghcup/env" ] && source "/home/camil/.ghcup/env" # ghcup-env +[ -f "/home/camil/.ghcup/env" ] && . "/home/camil/.ghcup/env" +[ -f /home/camil/.nix-profile/etc/profile.d/nix.sh ] && . /home/camil/.nix-profile/etc/profile.d/nix.sh export MANPATH="/usr/local/git/man:$MANPATH" export MANPATH="/usr/local/mysql/man:$MANPATH" @@ -55,4 +56,5 @@ abcclean() { shopt -s globstar [ "$(tty)" = "/dev/tty1" ] && exec startx -export PATH="$HOME/.mozbuild/arcanist/bin:$HOME/.mozbuild/moz-phab:$PATH" + +: |