nixos-config/modules/home/services/wpaperd.nix
SebastianStork 70b8d89311
Revert "home-manager: Use minimal module set and import everything else manually"
This reverts commit 0c25e7fd34.

The slightly decreased evaluation time isn't worth the added maintenance burden
2026-02-19 18:37:58 +01:00

14 lines
334 B
Nix

{ config, lib, ... }:
{
options.custom.services.wpaperd.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.services.wpaperd.enable {
services.wpaperd = {
enable = true;
settings.default = {
path = "${config.xdg.userDirs.pictures}/Wallpapers";
duration = "30m";
};
};
};
}