You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An alternative would be to create multiple timers/services doing the same thing. But as each timer is marked as Persistent, my understanding is that such jobs could be triggered multiple times after a system failure.
The text was updated successfully, but these errors were encountered:
Systemd allows to supply timers with multiple values for
OnCalendar
. This will trigger the service every time any timer matches. The SystemdTimer class does, however, only supports supplying a single string value.NixOS seems to be able to handle multiple timer units. Local testing suggests that supplying a list should be able to generate a valid systemd timer:
An alternative would be to create multiple timers/services doing the same thing. But as each timer
is marked as
Persistent
, my understanding is that such jobs could be triggered multiple times after a system failure.The text was updated successfully, but these errors were encountered: