From 0517d59a66f613471f478d0497aa5adb5dccfcdc Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 12 Dec 2015 14:19:56 +0100 Subject: [PATCH] nixos/acme: Improve documentation --- nixos/modules/security/acme.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 72eac82defa..37e4c287623 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -21,14 +21,18 @@ let validMin = mkOption { type = types.int; - default = 2592000; + default = 30 * 24 * 3600; description = "Minimum remaining validity before renewal in seconds."; }; renewInterval = mkOption { type = types.str; default = "weekly"; - description = "Systemd calendar expression when to check for renewal. See systemd.time(7)."; + description = '' + Systemd calendar expression when to check for renewal. See + systemd.time + 5. + ''; }; email = mkOption {