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