Files
nix-config/home/linux/desktop/wallpaper.nix
2023-12-18 00:36:59 +08:00

9 lines
244 B
Nix

{wallpapers, ...}: {
# https://github.com/ryan4yin/wallpapers
home.file.".config/wallpapers".source = wallpapers;
home.file.".local/bin/wallpaper_random" = {
source = "${wallpapers}/wallpaper_random.py";
executable = true;
};
}