2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-01-20 15:22:47 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2010-01-20 15:22:47 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2011-07-29 21:06:27 +02:00
|
|
|
environment.etc =
|
2013-08-18 17:46:07 +02:00
|
|
|
[ { source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ssl/certs/ca-bundle.crt";
|
2011-07-29 21:06:27 +02:00
|
|
|
}
|
|
|
|
];
|
2010-01-20 15:22:47 +01:00
|
|
|
|
2014-06-13 17:56:46 +02:00
|
|
|
environment.sessionVariables =
|
2014-06-10 13:07:10 +02:00
|
|
|
{ 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 20:20:50 +02:00
|
|
|
|
2010-01-20 15:22:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|