Add internal CA
All checks were successful
Run nix flake check / flake-check (push) Successful in 3m31s

This commit is contained in:
2024-11-30 20:24:43 +01:00
parent d16a35acb4
commit 5844e7b32b
4 changed files with 31 additions and 5 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
];
};
}