Files
nixos-config/modules/home/wallpaper.nix

27 lines
394 B
Nix
Raw Normal View History

{
config,
2025-12-15 23:44:33 -05:00
wallpaper,
...
}:
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 = {
2025-12-15 23:44:33 -05:00
path = "${wallpapers}/${wallpaper}";
};
};
};
}