forked from mirrors/nixpkgs
Merge pull request #18172 from Profpatsch/startAt-type
systemd-unit-options: startAt can be a list
This commit is contained in:
commit
d163882770
|
@ -309,7 +309,7 @@ in rec {
|
|||
};
|
||||
|
||||
startAt = mkOption {
|
||||
type = types.str;
|
||||
type = with types; either str (listOf str);
|
||||
default = "";
|
||||
example = "Sun 14:00:00";
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue