nixos/acme: Improve documentation

This commit is contained in:
Franz Pletz 2015-12-12 14:19:56 +01:00
parent de24b00d41
commit 0517d59a66

View File

@ -21,14 +21,18 @@ let
validMin = mkOption { validMin = mkOption {
type = types.int; type = types.int;
default = 2592000; default = 30 * 24 * 3600;
description = "Minimum remaining validity before renewal in seconds."; description = "Minimum remaining validity before renewal in seconds.";
}; };
renewInterval = mkOption { renewInterval = mkOption {
type = types.str; type = types.str;
default = "weekly"; 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
<citerefentry><refentrytitle>systemd.time</refentrytitle>
<manvolnum>5</manvolnum></citerefentry>.
'';
}; };
email = mkOption { email = mkOption {