cron-duolingo-rank.nix (382B)
1 { username, ... }: 2 { 3 systemd.timers.duolingo-rank = { 4 wantedBy = [ "timers.target" ]; 5 timerConfig = { 6 OnCalendar = "Sun 23:59"; 7 Persistent = true; 8 }; 9 }; 10 systemd.services.duolingo-rank = { 11 script = "blog-duolingo-rank"; 12 path = [ "/run/current-system/sw" ]; 13 serviceConfig = { 14 Type = "oneshot"; 15 User = "${username}"; 16 }; 17 }; 18 }