2016-04-10 21:23:16 +00:00
|
|
|
if [ -n "$HOME" ] && [ -n "$USER" ]; then
|
|
|
|
|
|
|
|
# Set up the per-user profile.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/shell.nix
|
|
|
|
|
2016-05-31 11:07:10 +00:00
|
|
|
NIX_LINK=$HOME/.nix-profile
|
2016-04-10 21:23:16 +00:00
|
|
|
|
|
|
|
# Set up environment.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/environment.nix
|
2019-05-16 02:04:39 +00:00
|
|
|
export NIX_PROFILES="@localstatedir@/nix/profiles/default $HOME/.nix-profile"
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2016-10-13 15:09:10 +00:00
|
|
|
# Set $NIX_SSL_CERT_FILE so that Nixpkgs applications like curl work.
|
2015-06-08 09:40:35 +00:00
|
|
|
if [ -e /etc/ssl/certs/ca-certificates.crt ]; then # NixOS, Ubuntu, Debian, Gentoo, Arch
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
2016-02-12 12:26:19 +00:00
|
|
|
elif [ -e /etc/ssl/ca-bundle.pem ]; then # openSUSE Tumbleweed
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Old NixOS
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e /etc/pki/tls/certs/ca-bundle.crt ]; then # Fedora, CentOS
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e "$NIX_LINK/etc/ssl/certs/ca-bundle.crt" ]; then # fall back to cacert in Nix profile
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ssl/certs/ca-bundle.crt"
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # old cacert in Nix profile
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt"
|
2014-07-29 15:11:54 +00:00
|
|
|
fi
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2022-02-21 12:35:51 +00:00
|
|
|
# Only use MANPATH if it is already set. In general `man` will just simply
|
|
|
|
# pick up `.nix-profile/share/man` because is it close to `.nix-profile/bin`
|
|
|
|
# which is in the $PATH. For more info, run `manpath -d`.
|
2019-02-14 18:24:16 +00:00
|
|
|
if [ -n "${MANPATH-}" ]; then
|
2016-07-29 10:00:11 +00:00
|
|
|
export MANPATH="$NIX_LINK/share/man:$MANPATH"
|
|
|
|
fi
|
|
|
|
|
2019-10-09 17:38:01 +00:00
|
|
|
export PATH="$NIX_LINK/bin:$PATH"
|
2019-11-22 15:27:48 +00:00
|
|
|
unset NIX_LINK
|
2008-11-20 17:22:42 +00:00
|
|
|
fi
|