mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
further refactor work
This commit is contained in:
parent
eb4713ec37
commit
befe6ea564
32 changed files with 39 additions and 14 deletions
14
nixos/servers/web/acme.nix
Normal file
14
nixos/servers/web/acme.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
_: {
|
||||
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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue