9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
14 lines
271 B
Nix
14 lines
271 B
Nix
let
|
|
domain = "*.test.nix";
|
|
domainSanitized = "_.test.nix";
|
|
in {
|
|
inherit domain;
|
|
ca = {
|
|
cert = ./ca.cert.pem;
|
|
key = ./ca.key.pem;
|
|
};
|
|
"${domain}" = {
|
|
cert = ./. + "/${domainSanitized}.cert.pem";
|
|
key = ./. + "/${domainSanitized}.key.pem";
|
|
};
|
|
}
|