Files
nixos-servers/system/pki/root-ca.nix
Torjus Håkestad 01c825db62
Some checks failed
Run nix flake check / flake-check (push) Failing after 11m38s
fixup! pki: add new vault root ca to pki
2026-02-03 05:02:54 +01:00

11 lines
172 B
Nix

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