2007-03-20 14:50:47 +01:00
|
|
|
export PATH=@wrapperDir@:/var/run/current-system/sw/bin:/var/run/current-system/sw/sbin
|
2008-06-04 11:11:47 +02:00
|
|
|
export LD_LIBRARY_PATH=/var/run/opengl-driver/lib
|
2008-04-10 14:14:15 +02:00
|
|
|
if test -n "@nssModulesPath@"; then
|
2008-06-04 11:11:47 +02:00
|
|
|
LD_LIBRARY_PATH=@nssModulesPath@$:$LD_LIBRARY_PATH
|
2008-04-10 14:14:15 +02:00
|
|
|
fi
|
2008-01-13 00:37:17 +01:00
|
|
|
export MODULE_DIR=@modulesTree@/lib/modules
|
2007-08-08 22:42:25 +02:00
|
|
|
export NIXPKGS_CONFIG=/nix/etc/config.nix
|
2008-02-07 15:39:32 +01:00
|
|
|
export PAGER="less -R"
|
2007-01-17 13:33:23 +01:00
|
|
|
export TZ=@timeZone@
|
2007-03-29 19:46:36 +02:00
|
|
|
export TZDIR=@glibc@/share/zoneinfo
|
2007-01-17 18:44:57 +01:00
|
|
|
export FONTCONFIG_FILE=/etc/fonts/fonts.conf
|
2007-04-04 15:47:54 +02:00
|
|
|
export LANG=@defaultLocale@
|
2007-04-07 21:29:34 +02:00
|
|
|
export EDITOR=nano
|
2008-01-07 12:46:17 +01:00
|
|
|
export INFOPATH=/var/run/current-system/sw/info:/var/run/current-system/sw/share/info
|
2008-02-01 13:35:51 +01:00
|
|
|
export LOCATE_PATH=/var/cache/locatedb
|
2007-01-15 15:43:56 +01:00
|
|
|
|
2007-03-20 14:50:47 +01:00
|
|
|
|
|
|
|
# Set up secure multi-user builds: non-root users build through the
|
|
|
|
# Nix daemon.
|
2007-01-15 15:43:56 +01:00
|
|
|
if test "$USER" != root; then
|
|
|
|
export NIX_REMOTE=daemon
|
2007-03-01 16:31:05 +01:00
|
|
|
else
|
|
|
|
export NIX_REMOTE=
|
2007-01-15 15:43:56 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2007-11-15 18:16:16 +01:00
|
|
|
# Set up the environment variables for running Nix.
|
|
|
|
@nixEnvVars@
|
|
|
|
|
|
|
|
|
2007-01-15 15:43:56 +01:00
|
|
|
# Set up the per-user profile.
|
|
|
|
NIX_USER_PROFILE_DIR=/nix/var/nix/profiles/per-user/$USER
|
|
|
|
mkdir -m 0755 -p $NIX_USER_PROFILE_DIR
|
2007-01-16 14:30:59 +01:00
|
|
|
if test "$(stat --printf '%u' $NIX_USER_PROFILE_DIR)" != "$(id -u)"; then
|
|
|
|
echo "WARNING: bad ownership on $NIX_USER_PROFILE_DIR" >&2
|
2007-01-15 15:43:56 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if ! test -L $HOME/.nix-profile; then
|
2007-03-20 14:50:47 +01:00
|
|
|
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
|
2007-01-15 15:43:56 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
NIX_PROFILES="/nix/var/nix/profiles/default $NIX_USER_PROFILE_DIR/profile"
|
|
|
|
|
|
|
|
for i in $NIX_PROFILES; do # !!! reverse
|
2007-02-12 16:29:43 +01:00
|
|
|
export PATH=$i/bin:$i/sbin:$PATH
|
2008-01-07 12:46:17 +01:00
|
|
|
export INFOPATH=$i/info:$i/share/info:$INFOPATH
|
2008-03-05 20:26:15 +01:00
|
|
|
export PKG_CONFIG_PATH="$i/lib/pkgconfig:$PKG_CONFIG_PATH"
|
2008-03-06 15:56:10 +01:00
|
|
|
export ACLOCAL_PATH="$i/share/aclocal:$ACLOCAL_PATH"
|
2007-01-15 15:43:56 +01:00
|
|
|
done
|
|
|
|
|
2008-02-14 10:41:34 +01:00
|
|
|
# Search directory for Aspell dictionaries.
|
|
|
|
export ASPELL_CONF="dict-dir $NIX_USER_PROFILE_DIR/profile/lib/aspell"
|
|
|
|
|
2007-04-10 16:18:15 +02:00
|
|
|
export PATH=$HOME/bin:$PATH
|
|
|
|
|
2007-01-15 15:43:56 +01:00
|
|
|
|
2007-08-22 16:58:51 +02:00
|
|
|
# Create the per-user garbage collector roots directory.
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2007-01-15 15:43:56 +01:00
|
|
|
# Set up a default Nix expression from which to install stuff.
|
2007-09-18 17:06:24 +02:00
|
|
|
if test ! -e $HOME/.nix-defexpr -o -L $HOME/.nix-defexpr; then
|
2007-01-15 15:43:56 +01:00
|
|
|
echo "creating $HOME/.nix-defexpr" >&2
|
2007-09-18 17:06:24 +02:00
|
|
|
rm -f $HOME/.nix-defexpr
|
|
|
|
mkdir $HOME/.nix-defexpr
|
2008-01-30 02:28:56 +01:00
|
|
|
ln -s /etc/nixos/nixpkgs $HOME/.nix-defexpr/nixpkgs_sys
|
2007-09-18 17:06:24 +02:00
|
|
|
ln -s /etc/nixos/nixos $HOME/.nix-defexpr/nixos
|
|
|
|
if test "$USER" != root; then
|
|
|
|
ln -s /nix/var/nix/gcroots/per-user/root/channels $HOME/.nix-defexpr/channels_root
|
|
|
|
fi
|
2007-01-15 15:43:56 +01:00
|
|
|
fi
|
|
|
|
|
2008-03-12 11:18:11 +01:00
|
|
|
# Include bashrc settings
|
2007-01-15 15:43:56 +01:00
|
|
|
|
2008-03-12 11:18:11 +01:00
|
|
|
source /etc/bashrc
|
2007-01-15 15:43:56 +01:00
|
|
|
|
|
|
|
# Read system-wide modifications.
|
|
|
|
if test -f /etc/profile.local; then
|
|
|
|
source /etc/profile.local
|
|
|
|
fi
|