nixos-module.nix: add timer

Cette révision appartient à :
Astro 2020-10-28 09:09:53 +01:00
Parent ac550e169f
révision f27005e7dd
1 fichiers modifiés avec 7 ajouts et 0 suppressions

Voir le fichier

@ -99,6 +99,13 @@ in
Group = cfg.group;
};
};
systemd.timers.ticker-update = {
wantedBy = [ "multi-user.target" ];
partOf = [ "ticker-update.service" ];
timerConfig = {
OnCalendar = cfg.updateInterval;
};
};
systemd.services.ticker-serve = {
wantedBy = [ "multi-user.target" ];