feat(certs): override the cacert package to always trust my own CA

This commit is contained in:
Khaïs COLIN 2024-08-11 14:03:26 +02:00
parent c79262d95c
commit 8d0a36614c
3 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,6 @@
self: super:
{
cacert = super.cacert.override {
extraCertificateFiles = [ ../certs/myCA.pem ];
};
}