source: dotfiles/guix/.bash_profile@ a48604f

Last change on this file since a48604f was 68d88d5, checked in by Mikhail Kirillov <w96k@…>, on Jul 15, 2022 at 12:43:04 AM

Add guix package path back

  • Property mode set to 100644
File size: 993 bytes
Line 
1export PATH=$PATH:$HOME/.bin:~/.local/bin:/bin:$HOME/.nix-profile/bin
2#:$HOME/.nix-profile/bin
3
4export CC=gcc
5export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.guix-profile/lib/
6
7export XENVIRONMENT=$HOME/.Xresources
8
9export MOZ_X11_EGL=1
10
11export python=/usr/bin/python3
12
13alias firefox='x11docker -c -I --share $HOME/Downloads -- --tmpfs /dev/shm -- jess/firefox'
14
15export LIBVA_DRIVER_NAME=i965
16export MOZ_X11_EGL=1
17
18export GUIX_PACKAGE_PATH=$HOME/.guix-packages
19GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
20
21for i in $GUIX_EXTRA_PROFILES/*; do
22 profile=$i/$(basename "$i")
23 if [ -f "$profile"/etc/profile ]; then
24 GUIX_PROFILE="$profile"
25 . "$GUIX_PROFILE"/etc/profile
26 fi
27 unset profile
28done
29
30export PHPENV_ROOT="/home/w96k/.phpenv"
31if [ -d "${PHPENV_ROOT}" ]; then
32 export PATH="${PHPENV_ROOT}/bin:${PATH}"
33 eval "$(phpenv init -)"
34fi
35
36# Honor per-interactive-shell startup file
37# if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
38
39if [ -f ~/.Xresources ]; then xrdb ~/.Xresources; fi
Note: See TracBrowser for help on using the repository browser.