8 lines
124 B
Nix
8 lines
124 B
Nix
{ config, ... }:
|
|
{
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "contact@${config.domains.p2}";
|
|
};
|
|
}
|