aboutsummaryrefslogtreecommitdiff
path: root/.profile
diff options
context:
space:
mode:
authorLuca Matei Pintilie <luca@lucamatei.com>2024-12-29 15:27:59 +0000
committerLuca Matei Pintilie <luca@lucamatei.com>2024-12-29 15:27:59 +0000
commit1ce79bbf109eaef85fbb81c891cd594f48323e76 (patch)
tree62563e841d390cd912914e7bc4b76bebeec64afe /.profile
parent5cd0e531546c36d2a81b9f97996f8e803730fa08 (diff)
downloaddotfiles-master.tar
dotfiles-master.tar.gz
dotfiles-master.tar.bz2
dotfiles-master.tar.lz
dotfiles-master.tar.xz
dotfiles-master.tar.zst
dotfiles-master.zip
home: fix missing dependencies and servicesHEADmaster
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
+