18 lines
No EOL
392 B
Nix
18 lines
No EOL
392 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
|
|
# letsencrypt
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults = {
|
|
email = "chris@toph.cc";
|
|
dnsProvider = "cloudflare";
|
|
environmentFile = ./cloudflare.ini;
|
|
};
|
|
certs = {
|
|
"ryot.foo" = {
|
|
extraDomainNames = ["*.ryot.foo"];
|
|
};
|
|
};
|
|
};
|
|
} |