From 1a13f68ae4e85b2650507fec7b52e3ccb0bf3f27 Mon Sep 17 00:00:00 2001 From: Jet Date: Mon, 20 Apr 2026 17:22:34 -0700 Subject: [PATCH] feat: make apod faster --- home.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/home.nix b/home.nix index 36158f7..6739231 100644 --- a/home.nix +++ b/home.nix @@ -818,10 +818,11 @@ in }; systemd.user.timers.nasa-apod-wallpaper = { - Unit.Description = "Refresh NASA APOD wallpaper daily"; + Unit.Description = "Refresh NASA APOD wallpaper regularly"; Timer = { - OnStartupSec = "0"; - OnUnitActiveSec = "1d"; + OnStartupSec = "2m"; + OnCalendar = "hourly"; + Persistent = true; Unit = "nasa-apod-wallpaper.service"; }; Install.WantedBy = [ "timers.target" ];