mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-21 00:49:52 +01:00
11 lines
247 B
Nix
11 lines
247 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;
|
|
};
|
|
}
|