Line | |
---|
1 | # Merge search-paths from multiple profiles, the order matters.
|
---|
2 | eval "$(guix package --search-paths \
|
---|
3 | -p $HOME/.config/guix/current \
|
---|
4 | -p $HOME/.guix-profile \
|
---|
5 | -p /run/current-system/profile)"
|
---|
6 |
|
---|
7 | # Prepend setuid programs.
|
---|
8 | export PATH=/run/setuid-programs:$PATH:$HOME/.bin:$PATH
|
---|
9 | export EMACSLOADPATH=$EMACSLOADPATH:$HOME/.emacs.d/elpa
|
---|
10 | export GTAGSLIBPATH=$GTAGSLIBPATH:$HOME/.guix-home/profile/include
|
---|
11 |
|
---|
12 | # export https_proxy=https://localhost:9250
|
---|
13 | export http_proxy=https://localhost:9250
|
---|
14 | export SOCKS_SERVER=localhost:9050
|
---|
15 |
|
---|
16 | # Set up the system, user profile, and related variables.
|
---|
17 | # /etc/profile will be sourced by bash automatically
|
---|
18 | # Set up the home environment profile.
|
---|
19 | if [ -f ~/.profile ]; then source ~/.profile; fi
|
---|
20 |
|
---|
21 | # Honor per-interactive-shell startup file
|
---|
22 | if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.