infra/config/acme.nix

13 lines
295 B
Nix
Raw Normal View History

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