nixcfg/systems/x86_64-linux/sgx/acme.nix
Harald Hoyer c2486f6c82 refactor: fix formatting and ensure consistent style
- Adjusted formatting in Nix files by revising argument lists.
- Added missing commas for consistency.
- Removed extraneous whitespace and ensured uniform newline usage.
2025-03-20 09:55:20 +01:00

27 lines
519 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"
];
};
};
};
}