27 lines
393 B
Nix
27 lines
393 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
home.file = {
|
||
|
"Pictures/Wallpapers" = {
|
||
|
source = ../../wallpapers;
|
||
|
recursive = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.wpaperd = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
default = {
|
||
|
duration = "30m";
|
||
|
mode = "center";
|
||
|
sorting = "ascending";
|
||
|
};
|
||
|
|
||
|
any = {
|
||
|
path = "/home/phil/Pictures/Wallpapers/girl.png";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|