From 144aeebf0fce2b9985ccfe43c14054802f38fd3d Mon Sep 17 00:00:00 2001 From: ibizaman Date: Wed, 29 Nov 2023 21:36:00 -0800 Subject: [PATCH] [ssl] clean up docs --- modules/blocks/ssl.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/blocks/ssl.nix b/modules/blocks/ssl.nix index 5146f4d..e46e9cb 100644 --- a/modules/blocks/ssl.nix +++ b/modules/blocks/ssl.nix @@ -8,13 +8,13 @@ in enable = lib.mkEnableOption "selfhostblocks.ssl"; domain = lib.mkOption { - description = lib.mdDoc "Domain to serve sites under."; + description = "Domain to ask a wildcard certificate for."; type = lib.types.str; example = "domain.com"; }; dnsProvider = lib.mkOption { - description = lib.mdDoc "DNS provider."; + description = "DNS provider to use. See https://go-acme.github.io/lego/dns/ for the list of supported providers."; type = lib.types.str; example = "linode"; }; @@ -37,13 +37,13 @@ in }; dnsResolver = lib.mkOption { - description = lib.mdDoc "IP of a DNS server used to resolve hostnames."; + description = "IP of a DNS server used to resolve hostnames."; type = lib.types.str; default = "8.8.8.8"; }; adminEmail = lib.mkOption { - description = lib.mdDoc "Admin email in case certificate retrieval goes wrong."; + description = "Admin email in case certificate retrieval goes wrong."; type = lib.types.str; }; };