2016-04-11 00:23:16 +03: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 14:07:10 +03:00
|
|
|
NIX_LINK=$HOME/.nix-profile
|
2016-04-11 00:23:16 +03:00
|
|
|
|
|
|
|
|
2019-05-15 15:30:09 +03:00
|
|
|
# Append ~/.nix-defexpr/channels to $NIX_PATH so that <nixpkgs>
|
|
|
|
# paths work when the user has fetched the Nixpkgs channel.
|
|
|
|
export NIX_PATH=${NIX_PATH:+$NIX_PATH:}$HOME/.nix-defexpr/channels
|
2016-04-11 00:23:16 +03:00
|
|
|
|
|
|
|
# Set up environment.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/environment.nix
|
2019-05-16 05:04:39 +03:00
|
|
|
export NIX_PROFILES="@localstatedir@/nix/profiles/default $HOME/.nix-profile"
|
2016-04-11 00:23:16 +03:00
|
|
|
|
2016-10-13 18:09:10 +03:00
|
|
|
# Set $NIX_SSL_CERT_FILE so that Nixpkgs applications like curl work.
|
2015-06-08 12:40:35 +03:00
|
|
|
if [ -e /etc/ssl/certs/ca-certificates.crt ]; then # NixOS, Ubuntu, Debian, Gentoo, Arch
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
2016-02-12 14:26:19 +02:00
|
|
|
elif [ -e /etc/ssl/ca-bundle.pem ]; then # openSUSE Tumbleweed
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Old NixOS
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e /etc/pki/tls/certs/ca-bundle.crt ]; then # Fedora, CentOS
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e "$NIX_LINK/etc/ssl/certs/ca-bundle.crt" ]; then # fall back to cacert in Nix profile
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ssl/certs/ca-bundle.crt"
|
2015-06-08 12:40:35 +03:00
|
|
|
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # old cacert in Nix profile
|
2016-10-13 18:09:10 +03:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt"
|
2014-07-29 18:11:54 +03:00
|
|
|
fi
|
2016-04-11 00:23:16 +03:00
|
|
|
|
2019-02-14 20:24:16 +02:00
|
|
|
if [ -n "${MANPATH-}" ]; then
|
2016-07-29 13:00:11 +03:00
|
|
|
export MANPATH="$NIX_LINK/share/man:$MANPATH"
|
|
|
|
fi
|
|
|
|
|
2019-10-09 20:38:01 +03:00
|
|
|
export PATH="$NIX_LINK/bin:$PATH"
|
2019-11-22 17:27:48 +02:00
|
|
|
unset NIX_LINK
|
2008-11-20 19:22:42 +02:00
|
|
|
fi
|