nixpkgs/nixos/modules/system
Profpatsch 488f0d9cb3 systemd-unit-options: startAt can be a list
OnCalendar entrys can be specified multiple times in a systemd timer, to
make more complex scheduling possible.

Tested by manually checking the timer generated by the following:

    systemd = {
      services.huhu = {
        description = "meh";
        wantedBy = [ "default.target" ];
        serviceConfig.ExecStart = "/bin/sh -c 'printf HUHU!'";
        startAt = [ "*:*:0/30" "*:0/1:15" ];
      };
    };

It prints HUHU to the log at seconds 0, 15 and 30 of each minute.
2016-09-01 00:39:36 +02:00
..
activation nixos filesystems: unify early filesystems handling 2016-08-27 13:38:20 +03:00
boot systemd-unit-options: startAt can be a list 2016-09-01 00:39:36 +02:00
etc etc: remove obsolete directories 2016-07-25 15:50:53 +03:00