From 2e7f6e6ba72415a3b698a62a08fac0ddcb39fb8a Mon Sep 17 00:00:00 2001 From: josiah Date: Fri, 12 Mar 2021 14:30:42 -0600 Subject: [PATCH] Fix stupid path problems. --- .bashrc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.bashrc b/.bashrc index 974d87f..4ac8fa7 100644 --- a/.bashrc +++ b/.bashrc @@ -10,12 +10,23 @@ set completion-ignore-case on # ignore case when tab-completing # find paths inside agares export AGARES=${AGARES:-"$HOME/.agares"} +# guix stuff +export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale +export GUIX_PROFILE="$HOME/.guix-profile" +source "$GUIX_PROFILE/etc/profile" + +# fuck with nix stuff +export XDG_DATA_DIRS="/home/josiah/.nix-profile/share:$XDG_DATA_DIRS" +if [ -e /home/josiah/.nix-profile/etc/profile.d/nix.sh ]; then + . /home/josiah/.nix-profile/etc/profile.d/nix.sh +fi # update paths with installed executables: export PATH=/usr/local/bin:$PATH export PATH=/usr/local/share/python:$PATH export PATH=/Users/jowj/Library/Python/3.6/bin:$PATH export PATH=/home/josiah/.local/bin:$PATH export PATH=/home/josiah/.gem/ruby/2.6.0/bin:$PATH +export PATH=/home/josiah/.config/guix/current/bin/:$PATH export EDITOR=emacsclient # blatantly steal micah's ls aliases because they make SO MUCH SENSE omg.