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

26 lines
383 B
Nix
Raw Normal View History

{
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 = {
2025-11-16 01:17:15 -05:00
path = "${wallpapers}/sunset_bay.jpg";
};
};
};
}