Last active
February 11, 2017 08:01
-
-
Save abbradar/8603326a3dbe66ab09baaa213904b176 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -n "$HOME" ]; then | |
export NIX_REMOTE=daemon | |
export NIX_USER_PROFILE_DIR=/nix/var/nix/profiles/per-user/$USER | |
mkdir -m 0755 -p $NIX_USER_PROFILE_DIR | |
if test "$(stat --printf '%u' $NIX_USER_PROFILE_DIR)" != "$(id -u)"; then | |
echo "WARNING: bad ownership on $NIX_USER_PROFILE_DIR" >&2 | |
fi | |
if ! test -L $HOME/.nix-profile; then | |
echo "creating $HOME/.nix-profile" >&2 | |
if test "$USER" != root; then | |
ln -s $NIX_USER_PROFILE_DIR/profile $HOME/.nix-profile | |
else | |
# Root installs in the system-wide profile by default. | |
ln -s /nix/var/nix/profiles/default $HOME/.nix-profile | |
fi | |
fi | |
export NIX_PROFILES="/nix/var/nix/profiles/default $HOME/.nix-profile" | |
for i in $NIX_PROFILES; do | |
export PATH=$i/bin:$PATH | |
done | |
if [ "$USER" = root -a ! -e $HOME/.nix-channels ]; then | |
echo "http://nixos.org/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels | |
fi | |
NIX_USER_GCROOTS_DIR=/nix/var/nix/gcroots/per-user/$USER | |
mkdir -m 0755 -p $NIX_USER_GCROOTS_DIR | |
if test "$(stat --printf '%u' $NIX_USER_GCROOTS_DIR)" != "$(id -u)"; then | |
echo "WARNING: bad ownership on $NIX_USER_GCROOTS_DIR" >&2 | |
fi | |
if [ ! -e $HOME/.nix-defexpr -o -L $HOME/.nix-defexpr ]; then | |
echo "creating $HOME/.nix-defexpr" >&2 | |
rm -f $HOME/.nix-defexpr | |
mkdir $HOME/.nix-defexpr | |
if [ "$USER" != root ]; then | |
ln -s /nix/var/nix/profiles/per-user/root/channels \ | |
$HOME/.nix-defexpr/channels_root | |
fi | |
fi | |
export NIX_PATH="/nix/var/nix/profiles/per-user/$USER/channels" | |
if [ "$USER" != "root" ]; then | |
export NIX_PATH="$NIX_PATH:/nix/var/nix/profiles/per-user/root/channels" | |
fi | |
# Set $SSL_CERT_FILE so that Nixpkgs applications like curl work. | |
if [ -e /etc/ssl/certs/ca-certificates.crt ]; then # NixOS, Ubuntu, Debian, Gentoo, Arch | |
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt | |
elif [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Old NixOS | |
export SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt | |
elif [ -e /etc/pki/tls/certs/ca-bundle.crt ]; then # Fedora, CentOS | |
export SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt | |
elif [ -e "$NIX_LINK/etc/ssl/certs/ca-bundle.crt" ]; then # fall back to cacert in Nix profile | |
export SSL_CERT_FILE="$NIX_LINK/etc/ssl/certs/ca-bundle.crt" | |
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # old cacert in Nix profile | |
export SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt" | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment