Emelie Graven
90eb0c3708
The entire file structure has been reorganised into stable and unstable to separate deployments running on either channel. A `mail` host running Simple Nix Mailserver has also been added for testing to see if it's a good alternative to soverin as well as SMTP for other services.
15 lines
301 B
Nix
15 lines
301 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
email = "admin+certs@anarkafem.dev";
|
|
certs."anarkafem.dev" = {
|
|
extraDomainNames = [ "*.anarkafem.dev" ];
|
|
dnsProvider = "hurricane";
|
|
credentialsFile = config.secrets.files.acme_anarkafem_dev.file;
|
|
};
|
|
};
|
|
}
|
|
|