m 2 default: use ca-bundle for CURL GIT, PIP

This commit is contained in:
makefu 2016-10-28 14:07:29 +02:00
parent ebd5e96517
commit 121c5cb92c
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -90,9 +90,14 @@ with import <stockholm/lib>;
"d /tmp 1777 root root - -"
];
nix.nixPath = [ "/var/src" ];
environment.variables = {
environment.variables = let
ca-bundle = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
in {
NIX_PATH = mkForce "/var/src";
EDITOR = mkForce "vim";
CURL_CA_BUNDLE = ca-bundle;
GIT_SSL_CAINFO = ca-bundle;
SSL_CERT_FILE = ca-bundle;
};
environment.systemPackages = with pkgs; [