mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 16:21:29 +01:00
10 lines
190 B
Nix
10 lines
190 B
Nix
{ wallpapers, ... }:
|
|
|
|
{
|
|
home.file.".config/wallpapers".source = wallpapers;
|
|
home.file.".local/bin/wallpaper_random" = {
|
|
source = ./wallpaper_random.py;
|
|
executable = true;
|
|
};
|
|
}
|