From 2b727da436910c4a59b5fd2401609bd5cb7ec64a Mon Sep 17 00:00:00 2001 From: kerfuzzle <58907164+kerfuzzle@users.noreply.github.com> Date: Thu, 8 Jan 2026 20:15:01 +0000 Subject: [PATCH] hyprpaper: update configuration format to support v0.8 (#2087) Closes: https://github.com/nix-community/stylix/issues/408 Closes: https://github.com/nix-community/stylix/issues/2122 Link: https://github.com/nix-community/stylix/pull/2087 Link: https://wiki.hypr.land/Hypr-Ecosystem/hyprpaper Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: 0xda157 --- modules/hyprpaper/hm.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/hyprpaper/hm.nix b/modules/hyprpaper/hm.nix index 6018b217..7e6ee898 100644 --- a/modules/hyprpaper/hm.nix +++ b/modules/hyprpaper/hm.nix @@ -1,11 +1,11 @@ -{ mkTarget, ... }: +{ lib, mkTarget, ... }: mkTarget { config = { image }: { - services.hyprpaper.settings = { - preload = [ "${image}" ]; - wallpaper = [ ",${image}" ]; + services.hyprpaper.settings.wallpaper = lib.singleton { + monitor = ""; + path = toString image; }; }; }