summaryrefslogtreecommitdiff
path: root/dotfiles/.bash_profile
blob: f93bf65b4705c06a94832e81f6bb15edd63fc648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- shell-script -*-

# Test if this is a GuixSD system.
function guixsd() {
    return `test -d /run/current-system`
}
export -f guixsd

# Test if this is my VHL workstation
function vhl() {
    return `test $(hostname) == "7VWJD42"`
}
export -f vhl

# Honor per-interactive-shell startup file
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi

# Only configure the SSH agent if we're not in an SSH session with a
# forwarded agent.
if ! [ -n "$SSH_CLIENT" -a -n "$SSH_AUTH_SOCK" ]
then
    export SSH_AUTH_SOCK="$HOME/.gnupg/S.gpg-agent.ssh"
fi

export EDITOR=emacsclient

export GUIX_PROFILE="$HOME/.guix-profile"

if [ -f $HOME/.guix-profile/etc/profile ]
then
    source $HOME/.guix-profile/etc/profile
fi

# Guix
#export GUIX_PACKAGE_PATH="$HOME/Code/guix-custom"

# Extra configuration needed on non-GuixSD systems.
if ! guixsd
then
    export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale"
fi

# Extra configuration needed for work machine.
if vhl
then
    export PATH="$HOME/.chefdk/gem/ruby/2.1.0/bin:/opt/chefdk/bin:$HOME/.rbenv/bin:$PATH"
    export GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt
    eval "$(rbenv init -)"
fi