From 3cecef15d75948d3a6386b82807388ab6baa8dd2 Mon Sep 17 00:00:00 2001 From: wmertens Date: Mon, 1 Dec 2014 23:07:50 +0100 Subject: [PATCH] Revert $GIT_SSL_CAINFO removal Users have an older git in their user environment and it doesn't work without it. We should keep it around for a while. --- nixos/modules/security/ca.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/security/ca.nix b/nixos/modules/security/ca.nix index e17ad448f401..f430a5a6339f 100644 --- a/nixos/modules/security/ca.nix +++ b/nixos/modules/security/ca.nix @@ -16,6 +16,8 @@ with lib; { SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; # FIXME: unneeded - remove eventually. OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; + # FIXME: unneeded - remove eventually. + GIT_SSL_CAINFO = "/etc/ssl/certs/ca-bundle.crt"; }; };