c548597976
svn path=/nixos/trunk/; revision=27735
23 lines
346 B
Nix
23 lines
346 B
Nix
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
environment.etc = singleton
|
|
{ source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
target = "ca-bundle.crt";
|
|
};
|
|
|
|
environment.shellInit =
|
|
''
|
|
export CURL_CA_BUNDLE=/etc/ca-bundle.crt
|
|
export GIT_SSL_CAINFO=/etc/ca-bundle.crt
|
|
'';
|
|
|
|
};
|
|
|
|
}
|