Remove the deUtils namespace

This commit is contained in:
SebastianStork 2025-05-28 10:30:35 +02:00
parent f0df314f21
commit 2ff87c8404
15 changed files with 33 additions and 33 deletions

View file

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