nixos-servers/system/root-ca.nix
Torjus Håkestad 5844e7b32b
All checks were successful
Run nix flake check / flake-check (push) Successful in 3m31s
Add internal CA
2024-11-30 20:24:43 +01:00

10 lines
146 B
Nix

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