2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-01-20 14:22:47 +00:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2010-01-20 14:22:47 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2015-02-05 17:06:57 +00:00
|
|
|
options = {
|
|
|
|
|
|
|
|
security.pki.certificateFiles = mkOption {
|
|
|
|
type = types.listOf types.path;
|
|
|
|
default = [];
|
|
|
|
example = literalExample "[ \"\${pkgs.cacert}/etc/ca-bundle.crt\" ]";
|
|
|
|
description = ''
|
|
|
|
A list of files containing trusted root certificates in PEM
|
|
|
|
format. These are concatenated to form
|
|
|
|
<filename>/etc/ssl/certs/ca-bundle.crt</filename>, which is
|
|
|
|
used by many programs that use OpenSSL, such as
|
|
|
|
<command>curl</command> and <command>git</command>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
security.pki.certificates = mkOption {
|
|
|
|
type = types.listOf types.string;
|
|
|
|
default = [];
|
|
|
|
example = singleton ''
|
|
|
|
NixOS.org
|
|
|
|
=========
|
|
|
|
-----BEGIN CERTIFICATE-----
|
|
|
|
MIIGUDCCBTigAwIBAgIDD8KWMA0GCSqGSIb3DQEBBQUAMIGMMQswCQYDVQQGEwJJ
|
|
|
|
TDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0
|
|
|
|
...
|
|
|
|
-----END CERTIFICATE-----
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
A list of trusted root certificates in PEM format.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2010-01-20 14:22:47 +00:00
|
|
|
config = {
|
|
|
|
|
2015-02-05 17:06:57 +00:00
|
|
|
security.pki.certificateFiles = [ "${pkgs.cacert}/etc/ca-bundle.crt" ];
|
|
|
|
|
2011-07-29 20:06:27 +01:00
|
|
|
environment.etc =
|
2015-02-05 17:06:57 +00:00
|
|
|
[ { source = pkgs.runCommand "ca-bundle.crt"
|
|
|
|
{ files =
|
|
|
|
config.security.pki.certificateFiles ++
|
|
|
|
[ (builtins.toFile "extra.crt" (concatStringsSep "\n" config.security.pki.certificates)) ];
|
|
|
|
}
|
|
|
|
''
|
|
|
|
cat $files > $out
|
|
|
|
'';
|
2013-08-18 16:46:07 +01:00
|
|
|
target = "ssl/certs/ca-bundle.crt";
|
2011-07-29 20:06:27 +01:00
|
|
|
}
|
|
|
|
];
|
2010-01-20 14:22:47 +00:00
|
|
|
|
2014-06-13 16:56:46 +01:00
|
|
|
environment.sessionVariables =
|
2014-07-28 18:06:09 +01:00
|
|
|
{ SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
# FIXME: unneeded - remove eventually.
|
|
|
|
OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
|
2014-12-01 22:07:50 +00:00
|
|
|
# FIXME: unneeded - remove eventually.
|
|
|
|
GIT_SSL_CAINFO = "/etc/ssl/certs/ca-bundle.crt";
|
2014-06-10 12:07:10 +01:00
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2010-01-20 14:22:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|