aboutsummaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
Diffstat (limited to '.profile')
-rwxr-xr-x.profile13
1 files changed, 13 insertions, 0 deletions
diff --git a/.profile b/.profile
index 32b9729..621a565 100755
--- a/.profile
+++ b/.profile
@@ -81,3 +81,16 @@ fi
export PATH
+if [ -d "$HOME/.guix-profile/etc/ssl/certs" ]
+then
+ SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
+ SSL_CERT_FILE="$SSL_CERT_DIR/ca-certificates.crt"
+ CURL_CA_BUNDLE="$SSL_CERT_FILE"
+ GIT_SSL_CAINFO="$SSL_CERT_FILE"
+
+ export SSL_CERT_DIR
+ export SSL_CERT_FILE
+ export GIT_SSL_CAINFO
+ export CURL_CA_BUNDLE
+fi
+