2010-01-20 06:22:47 -08:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2011-07-29 12:06:27 -07:00
|
|
|
environment.etc =
|
2013-08-18 08:46:07 -07:00
|
|
|
[ { source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ssl/certs/ca-bundle.crt";
|
2011-07-29 12:06:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# Backward compatibility; may remove at some point.
|
|
|
|
{ source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ca-bundle.crt";
|
|
|
|
}
|
|
|
|
];
|
2010-01-20 06:22:47 -08:00
|
|
|
|
2013-09-23 14:03:21 -07:00
|
|
|
environment.variables.OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
environment.variables.CURL_CA_BUNDLE = "/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
environment.variables.GIT_SSL_CAINFO = "/etc/ssl/certs/ca-bundle.crt";
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2010-01-20 06:22:47 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|