mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
14 lines
292 B
Nix
14 lines
292 B
Nix
_: {
|
|
environment.etc."ssl/credentials_template".text = ''
|
|
CF_API_EMAIL=!!CLOUDFLARE_EMAIL!!
|
|
CLOUDFLARE_API_KEY=!!CLOUDFLARE_API_KEY!!
|
|
'';
|
|
|
|
security.acme = {
|
|
defaults = {
|
|
dnsProvider = "cloudflare";
|
|
email = "acme@inskip.me";
|
|
};
|
|
acceptTerms = true;
|
|
};
|
|
}
|