mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
24 lines
429 B
Nix
24 lines
429 B
Nix
|
|
{
|
||
|
|
flake,
|
||
|
|
osConfig,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
let
|
||
|
|
inherit (flake.config.machines.devices) deimos;
|
||
|
|
hostname = osConfig.networking.hostName;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
services.wpaperd = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
"default" = {
|
||
|
|
path = "~/.config/wallpaper";
|
||
|
|
apply-shadow = true;
|
||
|
|
duration = "1m";
|
||
|
|
sorting = "random";
|
||
|
|
}
|
||
|
|
// (if hostname == deimos.name then { mode = "center"; } else { });
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|