nix-config/home/hyprland/wpaperd.nix

27 lines
393 B
Nix
Raw Permalink Normal View History

2025-09-10 11:48:22 +02:00
{ ... }:
{
home.file = {
"Pictures/Wallpapers" = {
source = ../../wallpapers;
recursive = true;
};
};
services.wpaperd = {
enable = true;
settings = {
default = {
duration = "30m";
mode = "center";
sorting = "ascending";
};
any = {
path = "/home/phil/Pictures/Wallpapers/girl.png";
};
};
};
}