Repo of animated wallpapers i found using a search engine
# flake.nix
inputs = {
papes = {
url = "github:BatteredBunny/papes";
flake = false;
};
}# home.nix
wayland.windowManager.hyprland = {
settings.exec-once = [
"swww img $(find ${inputs.papes}/images | shuf -n1)" # Display random wallpaper from wallpapers
];
};