From c548597976f0026b14929d782a05b39ee0e86e73 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Jul 2011 12:45:48 +0000 Subject: [PATCH] * Allow Git to find the CA bundle. svn path=/nixos/trunk/; revision=27735 --- modules/security/ca.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/security/ca.nix b/modules/security/ca.nix index efa32f5e8f3..4c7fe34389b 100644 --- a/modules/security/ca.nix +++ b/modules/security/ca.nix @@ -14,6 +14,7 @@ with pkgs.lib; environment.shellInit = '' export CURL_CA_BUNDLE=/etc/ca-bundle.crt + export GIT_SSL_CAINFO=/etc/ca-bundle.crt ''; };