diff --git a/home-manager/features/wallpaper.nix b/home-manager/features/wallpaper.nix index 04a5e83..988620e 100644 --- a/home-manager/features/wallpaper.nix +++ b/home-manager/features/wallpaper.nix @@ -10,6 +10,12 @@ monitors: settings = builtins.listToAttrs (map (mon: { name = mon; value = { path = "~/Pictures/Wallpaper/${mon}"; }; - }) monitors); - }; + }) monitors) // { + default = { + duration = "1h"; + mode = "center"; + sorting = "random"; + }; + }; + }; }