Replace hyprpaper with wpaperd

This commit is contained in:
SebastianStork 2025-07-16 19:18:30 +02:00
parent 419d0bac87
commit a401c0f4cf
2 changed files with 15 additions and 1 deletions

View file

@ -23,7 +23,7 @@
custom = { custom = {
services = { services = {
hyprpaper.enable = true; wpaperd.enable = true;
hypridle.enable = true; hypridle.enable = true;
waybar.enable = true; waybar.enable = true;
cliphist.enable = true; cliphist.enable = true;

View file

@ -0,0 +1,14 @@
{ 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";
};
};
};
}