summary refs log tree commit diff
path: root/nixos/modules/security/ca.nix
blob: f159e359f968ff00b12ee4b6b3fde8199cf4a7da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, lib, pkgs, ... }:

with lib;

{

  config = {

    environment.etc =
      [ { source = "${pkgs.cacert}/etc/ca-bundle.crt";
          target = "ssl/certs/ca-bundle.crt";
        }
      ];

    environment.variables.OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
    environment.variables.CURL_CA_BUNDLE = "/etc/ssl/certs/ca-bundle.crt";
    environment.variables.GIT_SSL_CAINFO = "/etc/ssl/certs/ca-bundle.crt";

  };

}