nix-config/home/hyprland/wpaperd.nix
2025-09-10 11:48:22 +02:00

27 lines
393 B
Nix

{ ... }:
{
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";
};
};
};
}