Rev | Line | |
---|
[20d7d4d] | 1 | # Set up Guix Home profile
|
---|
| 2 | if [ -f ~/.profile ]; then . ~/.profile; fi
|
---|
| 3 |
|
---|
| 4 | # Honor per-interactive-shell startup file
|
---|
| 5 | if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
|
---|
| 6 |
|
---|
| 7 | # Merge search-paths from multiple profiles, the order matters.
|
---|
| 8 | eval "$(guix package --search-paths \
|
---|
| 9 | -p $HOME/.config/guix/current \
|
---|
| 10 | -p $HOME/.guix-profile \
|
---|
| 11 | -p /run/current-system/profile)"
|
---|
| 12 |
|
---|
| 13 | # Prepend setuid programs.
|
---|
| 14 | export PATH=/run/setuid-programs:$PATH
|
---|
| 15 |
|
---|
| 16 | export PATH=$HOME/.bin:$PATH
|
---|
| 17 |
|
---|
| 18 | export EMACSLOADPATH=$EMACSLOADPATH:$HOME/.emacs.d/elpa
|
---|
Note:
See
TracBrowser
for help on using the repository browser.