Adding Nix
This commit is contained in:
parent
e208e1c9f5
commit
2e8413c168
1 changed files with 10 additions and 1 deletions
|
|
@ -36,4 +36,13 @@ fi
|
||||||
if [ -d "/usr/local/go" ]; then
|
if [ -d "/usr/local/go" ]; then
|
||||||
PATH="$PATH:/usr/local/go/bin"
|
PATH="$PATH:/usr/local/go/bin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "$HOME/.cargo" ]; then
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e /home/polarolouis/.nix-profile/etc/profile.d/nix.sh ]; then
|
||||||
|
. /home/polarolouis/.nix-profile/etc/profile.d/nix.sh;
|
||||||
|
export XDG_DATA_DIRS=$HOME/.nix-profile/share:$HOME/.share:"${XDG_DATA_DIRS:-/usr/local/share/:/usr/share/}"
|
||||||
|
fi # added by Nix installer
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue