Add internal CA
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m18s
Periodic flake update / flake-update (push) Successful in 1m52s

This commit is contained in:
2024-11-30 19:50:42 +01:00
parent 8548ef4607
commit 4bdadd098d
4 changed files with 23 additions and 0 deletions

9
system/root-ca.nix Normal file
View File

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