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
RevLine 
[5516569]1export PATH=$PATH:$HOME/.bin:~/.local/bin:/bin:$HOME/.nix-profile/bin:$HOME/.nodejs/bin
[50e2f75]2#:$HOME/.nix-profile/bin
[fcd469c]3
4export CC=gcc
[1acf9a9]5export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.guix-profile/lib/
[cc8263e]6
[dc74d32]7export XENVIRONMENT=$HOME/.Xresources
[91ad304]8
[50e2f75]9export MOZ_X11_EGL=1
10
[0f5c618]11export python=/usr/bin/python3
12
[8bf0e33]13alias firefox='x11docker -c -I --share $HOME/Downloads -- --tmpfs /dev/shm -- jess/firefox'
14
[dc74d32]15export LIBVA_DRIVER_NAME=i965
16export MOZ_X11_EGL=1
17
[68d88d5]18export GUIX_PACKAGE_PATH=$HOME/.guix-packages
[1cd0b1d]19GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
[5516569]20export GUILE_LOAD_PATH=$GUILE_LOAD_PATH:$HOME/projects/guix
21export GUILE_LOAD_COMPILED_PATH=$GUILE_LOAD_COMPILED_PATH:$HOME/projects/guix
[dc74d32]22
[1cd0b1d]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
[0d64484]31
[5516569]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
[dc74d32]37
[7b427be]38# Honor per-interactive-shell startup file
[8bf0e33]39# if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
[91ad304]40
[8bf0e33]41if [ -f ~/.Xresources ]; then xrdb ~/.Xresources; fi
Note: See TracBrowser for help on using the repository browser.