···106106 package = lib.mkPackageOption pkgs "sanoid" { };
107107108108 interval = lib.mkOption {
109109- type = lib.types.str;
109109+ type = with lib.types; either str (listOf str);
110110 default = "hourly";
111111 example = "*-*-* *:15:00";
112112 description = ''
113113 Run syncoid at this interval. The default is to run hourly.
114114115115- The format is described in
116116- {manpage}`systemd.time(7)`.
115115+ Must be in the format described in {manpage}`systemd.time(7)`. This is
116116+ equivalent to adding a corresponding timer unit with
117117+ {option}`OnCalendar` set to the value given here.
118118+119119+ Set to an empty list to avoid starting syncoid automatically.
117120 '';
118121 };
119122