From 2e6711bbddfb8422a63eaced67c5bab1f0606410 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 23 Mar 2026 02:31:14 +0100 Subject: [PATCH] docs: remove email from acme default configuration This is not required any longer since https://github.com/NixOS/nixpkgs/pull/489983 --- docs/setup-example.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/setup-example.nix b/docs/setup-example.nix index ea0dc50..aba25ed 100644 --- a/docs/setup-example.nix +++ b/docs/setup-example.nix @@ -18,10 +18,8 @@ }) ]; - security.acme = { - acceptTerms = true; - defaults.email = "security@example.com"; - }; + # https://letsencrypt.org/repository/#let-s-encrypt-subscriber-agreement + security.acme.acceptTerms = true; # Allow incoming HTTP connections networking.firewall.allowedTCPPorts = [ 80 ];