This commit is contained in:
2025-12-04 16:04:59 +01:00
parent ffb6138ea7
commit 620777f3fb
4 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
[Settings]
# Which backend to use
backend = swww
# Wallpaper directory to browse
wallpaper_dirs = ~/Pictures/Wallpapers/
# Transition settings for swww
swww_transition = wave
swww_fps = 30
swww_duration = 0.7
# Restore wallpaper on startup
restore_last = true
# Fit options: fill | contain | cover | center | tile
mode = fill
# Enable preview thumbnails
show_thumbnails = true
# Random wallpaper button
random = true

View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ waypaper ];
home.file = {
".config/waypaper/config.ini" = {
source = ./waypaper.ini;
force = true;
recursive = false;
};
};
}