nix/overlays/cacert.nix

7 lines
108 B
Nix
Raw Normal View History

self: super:
{
cacert = super.cacert.override {
extraCertificateFiles = [ ../certs/myCA.pem ];
};
}