blob: f22b9a6da227c5d5fb835da0d532d3f1ae130e6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
with import <stockholm/lib>;
{ config, ... }: let
certFile = config.environment.etc."ssl/certs/ca-certificates.crt".source;
in {
environment.variables = flip genAttrs (_: toString certFile) [
"CURL_CA_BUNDLE"
"GIT_SSL_CAINFO"
"SSL_CERT_FILE"
];
}
|