- Updated `acme.nix` to include `home.hoyer.world` in `extraDomainNames`. - Ensures ACME generates certificates for the new domain.
27 lines
548 B
Nix
27 lines
548 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
sops.secrets.internetbs = {
|
|
sopsFile = ../../../.secrets/sgx/internetbs.yaml; # bring your own password file
|
|
};
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults = {
|
|
email = "harald@hoyer.xyz";
|
|
dnsProvider = "cloudflare";
|
|
credentialsFile = config.sops.secrets.internetbs.path;
|
|
};
|
|
certs = {
|
|
"internal.hoyer.world" = {
|
|
extraDomainNames = [
|
|
"openwebui.hoyer.world"
|
|
"syncthing.hoyer.world"
|
|
"home.hoyer.world"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|