11.stylix/modules/hyprpaper/hm.nix
NAHO c1a01c591f treewide: remove redundant stylix.image escaping and string coercion
Remove redundant shell escaping and string coercion as stylix.image is
guaranteed to be a stringified store path with a valid string context
and no special characters.

Fixes: 3499e3ec70 ("treewide: properly quote stylix.image when used as a shell argument")
(cherry picked from commit 61c9f4dd14)
2026-01-15 16:50:41 +01:00

11 lines
184 B
Nix

{ mkTarget, ... }:
mkTarget {
config =
{ image }:
{
services.hyprpaper.settings = {
preload = [ image ];
wallpaper = [ ",${image}" ];
};
};
}