From 886ceab801b23a4723b7199e924b0d8495bff394 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Thu, 30 Nov 2023 11:02:10 -0800 Subject: [PATCH] fix some formatting --- modules/blocks/ssl.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/blocks/ssl.nix b/modules/blocks/ssl.nix index 4514bc57..d0ad4ef5 100644 --- a/modules/blocks/ssl.nix +++ b/modules/blocks/ssl.nix @@ -21,7 +21,8 @@ in credentialsFile = lib.mkOption { type = lib.types.path; - description = ''Credentials file location for the chosen DNS provider. + description = '' + Credentials file location for the chosen DNS provider. The content of this file must expose environment variables as written in the [documentation](https://go-acme.github.io/lego/dns/) of each DNS provider. @@ -45,10 +46,12 @@ in See the chose provider's [documentation](https://go-acme.github.io/lego/dns/) for available options. ''; - example = lib.literalExpression ''{ + example = lib.literalExpression '' + { DNSPROVIDER_TIMEOUT = "10"; DNSPROVIDER_PROPAGATION_TIMEOUT = "240"; - }''; + } + ''; }; dnsResolver = lib.mkOption {