MyNixOS website logo
option

services.restic.backups.<name>.timerConfig

When to run the backup. See systemd.timer(5) for details. If null no timer is created and the backup will only run when explicitly started.

This option is only supported on linux.

Declarations
Type
null or (attribute set of (boolean or signed integer or string or absolute path or list of (boolean or signed integer or string or absolute path)))
Default
{
  OnCalendar = "daily";
  Persistent = true;
}
Example
{
  OnCalendar = "00:05";
  Persistent = true;
  RandomizedDelaySec = "5h";
}