2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-01-20 14:22:47 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2010-01-20 14:22:47 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2011-07-29 19:06:27 +00:00
|
|
|
environment.etc =
|
2013-08-18 15:46:07 +00:00
|
|
|
[ { source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ssl/certs/ca-bundle.crt";
|
2011-07-29 19:06:27 +00:00
|
|
|
}
|
|
|
|
];
|
2010-01-20 14:22:47 +00:00
|
|
|
|
2014-06-10 11:07:10 +00:00
|
|
|
environment.systemVariables =
|
|
|
|
{ OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
CURL_CA_BUNDLE = "/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
GIT_SSL_CAINFO = "/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-01-20 14:22:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|