nix/overlays/cacert.nix

6 lines
106 B
Nix
Raw Normal View History

2024-09-18 12:03:23 +02:00
self: super: {
cacert = super.cacert.override {
2024-09-18 12:03:23 +02:00
extraCertificateFiles = [../certs/myCA.pem];
};
}