Rev | Line | |
---|
[20d7d4d] | 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.
|
---|
[5211578] | 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
|
---|
[20d7d4d] | 11 |
|
---|
[5211578] | 12 | # export https_proxy=https://localhost:9250
|
---|
| 13 | export http_proxy=https://localhost:9250
|
---|
| 14 | export SOCKS_SERVER=localhost:9050
|
---|
[20d7d4d] | 15 |
|
---|
[5211578] | 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.