source: dotfiles/guix/.dotfiles/.bash_profile@ 5211578

Last change on this file since 5211578 was 5211578, checked in by Mikhail Kirillov <w96k@…>, on Sep 25, 2024 at 11:43:27 PM

Update dotfiles

  • Property mode set to 100644
File size: 811 bytes
Line 
1# Merge search-paths from multiple profiles, the order matters.
2eval "$(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.
8export PATH=/run/setuid-programs:$PATH:$HOME/.bin:$PATH
9export EMACSLOADPATH=$EMACSLOADPATH:$HOME/.emacs.d/elpa
10export GTAGSLIBPATH=$GTAGSLIBPATH:$HOME/.guix-home/profile/include
11
12# export https_proxy=https://localhost:9250
13export http_proxy=https://localhost:9250
14export 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.
19if [ -f ~/.profile ]; then source ~/.profile; fi
20
21# Honor per-interactive-shell startup file
22if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
Note: See TracBrowser for help on using the repository browser.