2009-05-29 00:02:47 +02:00
|
|
|
if [ -n "$NOSYSBASHRC" ]; then
|
2009-06-26 13:36:38 +02:00
|
|
|
return
|
2009-05-29 00:02:47 +02:00
|
|
|
fi
|
2009-06-26 13:36:38 +02:00
|
|
|
|
2008-07-16 18:01:09 +02:00
|
|
|
# Initialise a bunch of environment variables.
|
|
|
|
export PATH=/var/run/current-system/sw/bin:/var/run/current-system/sw/sbin
|
|
|
|
export LD_LIBRARY_PATH=/var/run/opengl-driver/lib
|
|
|
|
export MODULE_DIR=@modulesTree@/lib/modules
|
|
|
|
export NIXPKGS_CONFIG=/nix/etc/config.nix
|
2008-07-23 18:06:03 +02:00
|
|
|
export NIXPKGS_ALL=/etc/nixos/nixpkgs
|
2008-07-16 18:01:09 +02:00
|
|
|
export PAGER="less -R"
|
|
|
|
export EDITOR=nano
|
|
|
|
export LOCATE_PATH=/var/cache/locatedb
|
2009-05-28 14:56:56 +02:00
|
|
|
@shellInit@
|
2008-07-16 18:01:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Include the various profiles in the appropriate environment variables.
|
|
|
|
NIX_USER_PROFILE_DIR=/nix/var/nix/profiles/per-user/$USER
|
|
|
|
|
|
|
|
NIX_PROFILES="/nix/var/nix/profiles/default $NIX_USER_PROFILE_DIR/profile"
|
|
|
|
|
|
|
|
for i in $NIX_PROFILES; do # !!! reverse
|
|
|
|
export PATH=$i/bin:$i/sbin:$PATH
|
|
|
|
export INFOPATH=$i/info:$i/share/info:$INFOPATH
|
|
|
|
export PKG_CONFIG_PATH="$i/lib/pkgconfig:$PKG_CONFIG_PATH"
|
2008-10-09 21:58:11 +02:00
|
|
|
|
2009-05-15 09:55:47 +02:00
|
|
|
# "lib/site_perl" is for backwards compatibility with packages
|
|
|
|
# from Nixpkgs <= 0.12.
|
|
|
|
export PERL5LIB="$i/lib/perl5/site_perl:$i/lib/site_perl:$PERL5LIB"
|
2008-11-11 18:08:04 +01:00
|
|
|
|
|
|
|
# GStreamer.
|
|
|
|
export GST_PLUGIN_PATH="$i/lib/gstreamer-0.10:$GST_PLUGIN_PATH"
|
2009-02-20 17:31:42 +01:00
|
|
|
|
|
|
|
# KDE/Gnome stuff.
|
|
|
|
export KDEDIRS=$i:$KDEDIRS
|
|
|
|
export XDG_CONFIG_DIRS=$i/etc/xdg:$XDG_CONFIG_DIRS
|
|
|
|
export XDG_DATA_DIRS=$i/share:$XDG_DATA_DIRS
|
2008-07-16 18:01:09 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# Search directory for Aspell dictionaries.
|
|
|
|
export ASPELL_CONF="dict-dir $NIX_USER_PROFILE_DIR/profile/lib/aspell"
|
|
|
|
|
|
|
|
|
|
|
|
# ~/bin and the setuid wrappers override other bin directories.
|
|
|
|
export PATH=$HOME/bin:@wrapperDir@:$PATH
|
|
|
|
|
|
|
|
|
|
|
|
# Provide a nice prompt.
|
|
|
|
PROMPT_COLOR="1;31m"
|
|
|
|
let $UID && PROMPT_COLOR="1;32m"
|
|
|
|
PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] "
|
|
|
|
if test "$TERM" = "xterm"; then
|
|
|
|
PS1="\033]2;\h:\u:\w\007$PS1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Some aliases.
|
|
|
|
alias ls="ls --color=tty"
|
|
|
|
alias ll="ls -l"
|
|
|
|
alias l="ls -alh"
|
|
|
|
alias which="type -p"
|
|
|
|
|
2009-08-10 12:18:33 +02:00
|
|
|
# Completion.
|
|
|
|
if [ -d "@bash@/etc/bash_completion.d" ]
|
|
|
|
then
|
|
|
|
export BASH_COMPLETION_DIR="@bash@/etc/bash_completion.d"
|
|
|
|
fi
|
|
|
|
if [ -f "@bash@/etc/bash_completion" ]
|
|
|
|
then
|
|
|
|
export BASH_COMPLETION="@bash@/etc/bash_completion"
|
|
|
|
source "$BASH_COMPLETION"
|
|
|
|
fi
|