diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2021-02-23 14:16:42 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-02-23 14:40:35 +0900 |
commit | 8cb1883510ed69c4ffc8080b777bec4b48fe187c (patch) | |
tree | 89c391c9b6c2f53bc02c0cafabce0f1ffdeb75cc | |
parent | 24b520e8f58cac8578d133f8a1a8af48a12800db (diff) |
Add nss-certs package
-rw-r--r-- | .xsessionrc | 4 | ||||
-rw-r--r-- | manifests.scm | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.xsessionrc b/.xsessionrc index 760a98c..4a619a8 100644 --- a/.xsessionrc +++ b/.xsessionrc @@ -5,3 +5,7 @@ GUIX_PROFILE="$HOME/.config/guix/current" . "$GUIX_PROFILE/etc/profile" export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale" +export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs" +export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" +export GIT_SSL_CAINFO="$SSL_CERT_FILE" +export CURL_CA_BUNDLE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" diff --git a/manifests.scm b/manifests.scm index 6f1be93..c091b8d 100644 --- a/manifests.scm +++ b/manifests.scm @@ -1,2 +1,3 @@ (specifications->manifest - '("glibc-locales")) + '("glibc-locales" + "nss-certs")) |