hyprpaper: Remove module

This commit is contained in:
SebastianStork 2026-02-19 19:25:01 +01:00
parent 70b8d89311
commit fea60de14e
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
{
options.custom.services.hyprpaper.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.services.hyprpaper.enable {
services.hyprpaper = {
enable = true;
settings = {
preload = [ "~/Pictures/.wallpaper" ];
wallpaper = [ ", ~/Pictures/.wallpaper" ];
};
};
};
}