nixos/system/root-ca.nix
Torjus Håkestad 4bdadd098d
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m18s
Periodic flake update / flake-update (push) Successful in 1m52s
Add internal CA
2024-11-30 19:50:42 +01:00

10 lines
146 B
Nix

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