Commit | Line | Data |
---|---|---|
9daac239 AB |
1 | # ~/.profile: executed by the command interpreter for login shells. |
2 | # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login | |
3 | # exists. | |
14623136 | 4 | |
47d195d9 AB |
5 | # source host-specific profile |
6 | if [ -f "$HOME/.config/profiles/$(hostname)" ]; then | |
7 | . "$HOME/.config/profiles/$(hostname)" | |
8 | fi | |
9 | ||
2446aab5 AB |
10 | export EDITOR="emacsclient -nw" |
11 | export VISUAL="emcl" | |
d99f86cd | 12 | |
a71a12e1 | 13 | PATH="$HOME/usr/local/bin:$HOME/.local/bin:$PATH" |
9daac239 | 14 | PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH" |
47d195d9 | 15 | if [ -z "$IS_GUIX_SYSTEM" ]; then |
09b0be0b | 16 | PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" |
a71a12e1 | 17 | INFOPATH="$HOME/.config/guix/current/share/info${INFOPATH:+:}$INFOPATH" |
09b0be0b | 18 | export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale" |
47d195d9 | 19 | fi |
9daac239 | 20 | export PATH |
a71a12e1 | 21 | export INFOPATH |
a75331ab | 22 | |
e72d011d AB |
23 | export MY_GUIX_MANIFESTS="$HOME/.config/guix/manifest" |
24 | export MY_GUIX_PROFILES="$HOME/.config/guix/profile" | |
25 | ||
0f10b2c2 AB |
26 | export XDG_CONFIG_HOME="$HOME/.config" |
27 | export XDG_DATA_HOME="$HOME/.local/share" | |
9daac239 | 28 | |
8e0e4297 AB |
29 | if [ -f "$HOME/.config/user-dirs.dirs" ]; then |
30 | set -a | |
31 | . "$HOME/.config/user-dirs.dirs" | |
32 | set +a | |
33 | fi | |
34 | ||
9daac239 AB |
35 | export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc |
36 | export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc | |
a75331ab | 37 | |
0f10b2c2 AB |
38 | export MAILDIR="$HOME/mail" |
39 | export CVS_RSH="ssh" | |
a75331ab | 40 | |
9daac239 AB |
41 | export GOPATH="$HOME/src/go" |
42 | ||
43 | # if running bash | |
44 | if [ -n "$BASH_VERSION" ]; then | |
45 | # include .bashrc if it exists | |
46 | if [ -f "$HOME/.bashrc" ]; then | |
47 | . "$HOME/.bashrc" | |
48 | fi | |
49 | fi | |
50 | ||
47d195d9 AB |
51 | if [ -z "$IS_GUIX_SYSTEM" ]; then |
52 | # if guix is installed | |
53 | if [ -x "$(command -v guix)" ]; then | |
3dfefa51 AB |
54 | SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs" |
55 | if [ -d "$SSL_CERT_DIR" -o -h "$SSL_CERT_DIR" ]; then | |
56 | export SSL_CERT_DIR | |
57 | export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" | |
58 | else | |
59 | printf "it seems you forgot to \`guix install nss-certs\'\n" | |
60 | fi | |
47d195d9 AB |
61 | GUIX_PROFILE="$HOME/.guix-profile" |
62 | . "$GUIX_PROFILE/etc/profile" | |
63 | fi | |
64 | fi | |
65 | ||
e72d011d AB |
66 | for p in $MY_GUIX_PROFILES/*; do |
67 | profile=$p/$(basename "$p") | |
68 | if [ -f "$profile"/etc/profile ]; then | |
69 | GUIX_PROFILE="$profile" | |
70 | . "$GUIX_PROFILE"/etc/profile | |
71 | fi | |
72 | unset profile | |
73 | done | |
74 | ||
c0ace3ce AB |
75 | # start an ssh-agent (with guix's openssh) |
76 | if [ -z "$IS_GUIX_SYSTEM" ]; then | |
77 | if ! pgrep -u "$USER" ssh-agent > /dev/null; then | |
78 | ssh-agent > ~/.ssh-agent-thing | |
79 | fi | |
80 | if [[ ! "$SSH_AUTH_SOCK" ]]; then | |
81 | eval "$(<~/.ssh-agent-thing)" | |
82 | fi | |
83 | fi | |
84 | ||
b91f8784 AB |
85 | # footenote: when on a foreign distro and using Xfce, don't forget to |
86 | # disable its auto-start of gpg- and ssh-agent, by issuing | |
87 | # xfconf-query -c xfce4-session -p /startup/ssh-agent/enabled -n -t bool -s false | |
88 | # xfconf-query -c xfce4-session -p /startup/gpg-agent/enabled -n -t bool -s false | |
89 | # see https://docs.xfce.org/xfce/xfce4-session/advanced#ssh_and_gpg_agents | |
90 | # also, MATE does something similar with gnome-keyring-daemon: | |
91 | # http://william.shallum.net/random-notes/disabling-gnome-keyring-daemon-ssh-agent-on-mate-desktop |