pki: add new vault root ca to pki

This commit is contained in:
2026-02-03 04:56:22 +01:00
parent 048536ba70
commit 225943c8a5
4 changed files with 16 additions and 1 deletions

10
system/pki/root-ca.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
security.pki = {
certificateFiles = [
"${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
./root-ca.crt
./root-ca-vault.crt
];
};
}