d17d1636b1
This reverts commit 10133f0b5b
.
See discussion at https://github.com/NixOS/nixos/pull/224
31 lines
604 B
Nix
31 lines
604 B
Nix
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
environment.etc =
|
|
[ { source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
target = "ssl/certs/ca-bundle.crt";
|
|
}
|
|
|
|
# Backward compatibility; may remove at some point.
|
|
{ source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
target = "ca-bundle.crt";
|
|
}
|
|
];
|
|
|
|
environment.shellInit =
|
|
''
|
|
export OPENSSL_X509_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
|
|
|
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-bundle.crt
|
|
export GIT_SSL_CAINFO=/etc/ssl/certs/ca-bundle.crt
|
|
'';
|
|
|
|
};
|
|
|
|
}
|