Updated hyprland setup with basic wallpaper support

This commit is contained in:
2025-11-07 23:06:50 -05:00
parent 58276cc8e0
commit 636c8d4d0d
12 changed files with 600 additions and 33 deletions

View File

@@ -0,0 +1,25 @@
{
config,
...
}:
let
wallpapers = config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR;
in
{
home.file."${wallpapers}" = {
source = ../../wallpapers;
recursive = true;
};
services.wpaperd = {
enable = true;
settings = {
default = {
mode = "center";
};
any = {
path = "${wallpapers}/lanterns_of_twilight.png";
};
};
};
}