source: dotfiles/guix/home/.bash_profile@ 20d7d4d

Last change on this file since 20d7d4d was 20d7d4d, checked in by Mikhail Kirillov <w96k@…>, on Jul 31, 2024 at 3:42:56 AM

Add basic guix home config

  • Property mode set to 100644
File size: 504 bytes
Line 
1# Set up Guix Home profile
2if [ -f ~/.profile ]; then . ~/.profile; fi
3
4# Honor per-interactive-shell startup file
5if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
6
7# Merge search-paths from multiple profiles, the order matters.
8eval "$(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.
14export PATH=/run/setuid-programs:$PATH
15
16export PATH=$HOME/.bin:$PATH
17
18export EMACSLOADPATH=$EMACSLOADPATH:$HOME/.emacs.d/elpa
Note: See TracBrowser for help on using the repository browser.