nixos/acme: Improve documentation
This commit is contained in:
parent
de24b00d41
commit
0517d59a66
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user