aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2026-03-22 16:00:00 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2026-03-22 16:00:00 +0200
commit173fe3eded7a42dc4a1802cd9fd2403c85ac08b2 (patch)
tree34aa1919c7ccb3f010ae28940b43955e902c0afb
parent2139654ee25cd23aacd8b9907d140f6b1e7da4f0 (diff)
downloadnixos-173fe3eded7a42dc4a1802cd9fd2403c85ac08b2.tar.zst
Fix wallpaperHEADmaster
Diffstat (limited to '')
-rw-r--r--home/wallpapers/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/home/wallpapers/default.nix b/home/wallpapers/default.nix
index 5203cff..a358a70 100644
--- a/home/wallpapers/default.nix
+++ b/home/wallpapers/default.nix
@@ -60,6 +60,7 @@ in
systemd.user.services."wallpaper-fetch" = {
Unit = {
Description = "Fetch and update 4K nature wallpaper for Hyprpaper";
+ After = [ "graphical-session.target" ];
};
Service = {
LoadCredential = [ "login_token:${config.age.secrets.unsplash_access_key.path}" ];
@@ -72,8 +73,6 @@ in
systemd.user.timers."wallpaper-fetch" = {
Unit = {
Description = "Periodic Unsplash wallpaper fetch timer";
- After = [ "graphical-session.target" ];
- Wants = [ "network-online.target" ];
};
Timer = {
OnBootSec = "2min";