source: dotfiles/guix/.bash_profile@ 5516569

Last change on this file since 5516569 was 5516569, checked in by Mikhail Kirillov <w96k@…>, on Oct 6, 2022 at 12:26:10 PM

Add changes to config

  • Property mode set to 100644
File size: 1.1 KB
Line 
1export PATH=$PATH:$HOME/.bin:~/.local/bin:/bin:$HOME/.nix-profile/bin:$HOME/.nodejs/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
20export GUILE_LOAD_PATH=$GUILE_LOAD_PATH:$HOME/projects/guix
21export GUILE_LOAD_COMPILED_PATH=$GUILE_LOAD_COMPILED_PATH:$HOME/projects/guix
22
23for i in $GUIX_EXTRA_PROFILES/*; do
24 profile=$i/$(basename "$i")
25 if [ -f "$profile"/etc/profile ]; then
26 GUIX_PROFILE="$profile"
27 . "$GUIX_PROFILE"/etc/profile
28 fi
29 unset profile
30done
31
32# export PHPENV_ROOT="/home/w96k/.phpenv"
33# if [ -d "${PHPENV_ROOT}" ]; then
34# export PATH="${PHPENV_ROOT}/bin:${PATH}"
35# eval "$(phpenv init -)"
36# fi
37
38# Honor per-interactive-shell startup file
39# if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
40
41if [ -f ~/.Xresources ]; then xrdb ~/.Xresources; fi
Note: See TracBrowser for help on using the repository browser.