feat: make apod faster

This commit is contained in:
Jet 2026-04-20 17:22:34 -07:00
parent be2da3ca70
commit 1a13f68ae4
No known key found for this signature in database

View file

@ -818,10 +818,11 @@ in
}; };
systemd.user.timers.nasa-apod-wallpaper = { systemd.user.timers.nasa-apod-wallpaper = {
Unit.Description = "Refresh NASA APOD wallpaper daily"; Unit.Description = "Refresh NASA APOD wallpaper regularly";
Timer = { Timer = {
OnStartupSec = "0"; OnStartupSec = "2m";
OnUnitActiveSec = "1d"; OnCalendar = "hourly";
Persistent = true;
Unit = "nasa-apod-wallpaper.service"; Unit = "nasa-apod-wallpaper.service";
}; };
Install.WantedBy = [ "timers.target" ]; Install.WantedBy = [ "timers.target" ];