infra/config/acme.nix

12 lines
291 B
Nix
Raw Normal View History

2023-05-06 06:49:46 +02:00
{config, ...}: {
security.acme = {
acceptTerms = true;
defaults.email = "hey@winston.sh";
certs."winston.sh" = {
2024-03-08 00:18:25 +01:00
extraDomainNames = ["*.winston.sh"];
2023-05-06 06:49:46 +02:00
dnsProvider = "porkbun";
credentialsFile = config.age.secrets."lego/porkbun-credentials".path;
};
};
}