mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
* Provide a bundle of CA certificates in /etc/ca-bundle.crt, and set
the CURL_CA_BUNDLE environment variable. This allows curl to work without the `-k' flag on https sites with a properly signed certificate. svn path=/nixos/trunk/; revision=19572
This commit is contained in:
parent
6502806689
commit
8a6346e477
@ -31,6 +31,7 @@
|
||||
./programs/ssh.nix
|
||||
./programs/ssmtp.nix
|
||||
./rename.nix
|
||||
./security/ca.nix
|
||||
./security/consolekit.nix
|
||||
./security/pam.nix
|
||||
./security/pam_usb.nix
|
||||
|
21
modules/security/ca.nix
Normal file
21
modules/security/ca.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ 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
|
||||
'';
|
||||
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user