mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 15:46:24 +01:00
10 lines
183 B
Nix
10 lines
183 B
Nix
{...}: {
|
|
home.file.wallpaper = {
|
|
target = "Pictures/wallpaper.jpg";
|
|
source = ./wallpaper.jpg;
|
|
onChange = ''
|
|
feh --bg-fill ~/Pictures/wallpaper.jpg;
|
|
'';
|
|
};
|
|
}
|