diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-07-27 15:52:29 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-07-27 20:10:00 -0600 |
| commit | 0fa5efb1ccc638652c829bebd75b774ccd6025b7 (patch) | |
| tree | fe7380db71182781448eaaa69ee3e0bbe00f309e | |
| parent | ac9c097ee33257532d1a011de5ddab7de05eabd6 (diff) | |
sys/pki: add existing leaf certs: [lustrated]
Diffstat (limited to '')
| -rw-r--r-- | sys/pki/ca.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/pki/ca.nix b/sys/pki/ca.nix index 2b74a89..0a0d3c2 100644 --- a/sys/pki/ca.nix +++ b/sys/pki/ca.nix @@ -93,12 +93,20 @@ in crl = ./public/home-crl.pem; cert = ./public/home-ca.pem; issuer = "root"; + + leaves = { + user-firefox.cert = ./public/home-user-firefox.pem; + }; }; mail = { crl = ./public/mail-crl.pem; cert = ./public/mail-ca.pem; issuer = "root"; + + leaves = { + kiev.cert = ./public/mail-kiev.pem; + }; }; root = { |
