25 lines
557 B
Nix
25 lines
557 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
sops.secrets.internetbs = {
|
|
sopsFile = ../../../.secrets/sgx/internetbs.yaml; # bring your own password file
|
|
};
|
|
|
|
metacfg.services.acmeBase.credentialsFile = config.sops.secrets.internetbs.path;
|
|
|
|
security.acme.certs = {
|
|
"internal.hoyer.world" = {
|
|
extraDomainNames = [
|
|
"openwebui.hoyer.world"
|
|
"syncthing.hoyer.world"
|
|
"home.hoyer.world"
|
|
"status.hoyer.world"
|
|
"firefly.hoyer.world"
|
|
"firefly-import.hoyer.world"
|
|
"opencode.sgx.hoyer.world"
|
|
];
|
|
};
|
|
};
|
|
}
|