diff options
author | tv <tv@krebsco.de> | 2016-10-24 14:38:54 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-10-24 14:38:54 +0200 |
commit | d999dc6d2536cb378e057a55759457fdfb5db7a4 (patch) | |
tree | ee042e17d7ac493f641a1a2cae6e429130fc1f6b /tv/2configs/default.nix | |
parent | 08c7671fc51270e582e16cbe49aa896f8bff7685 (diff) |
tv: DRY up ca-bundle defs
Diffstat (limited to 'tv/2configs/default.nix')
-rw-r--r-- | tv/2configs/default.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tv/2configs/default.nix b/tv/2configs/default.nix index 39d0c4f6b..0854e53c2 100644 --- a/tv/2configs/default.nix +++ b/tv/2configs/default.nix @@ -112,13 +112,14 @@ with import <stockholm/lib>; }; } - (let ca-bundle = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; in { - environment.variables = { - CURL_CA_BUNDLE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; - GIT_SSL_CAINFO = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; - SSL_CERT_FILE = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; - }; - }) + { + environment.variables = + flip genAttrs (_: "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt") [ + "CURL_CA_BUNDLE" + "GIT_SSL_CAINFO" + "SSL_CERT_FILE" + ]; + } { services.cron.enable = false; |