From f211bae4e26f8d8c2aa7d24b2cdc5c2c2443626a Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 31 Jan 2021 12:05:20 +0100 Subject: [PATCH] =?UTF-8?q?Globally=20set=20Let=E2=80=99s=20Encrypt=20requ?= =?UTF-8?q?irements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/default.nix b/modules/default.nix index fe1c869..56fd7f7 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -135,5 +135,11 @@ in nixpkgs.overlays = [ (import ../pkgs) ]; + + # Globally set Let’s Encrypt requirements + security.acme = { + acceptTerms = true; + email = "security@sbruder.de"; + }; }; }