Files
system-config/home-manager/features/hyprpaper.nix

16 lines
374 B
Nix

monitors: _: {
services.hyprpaper = {
enable = true;
settings = {
wallpaper = map (mon: {
monitor = mon;
# Each monitor gets a folder under wallpaper that containes the current images.
path = "~/Pictures/Wallpaper/${mon}";
timeout = 3600;
recursive = true;
fit_mode = "cover";
}) monitors;
};
};
}