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 commit61c9f4dd14)
11 lines
184 B
Nix
11 lines
184 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
config =
|
|
{ image }:
|
|
{
|
|
services.hyprpaper.settings = {
|
|
preload = [ image ];
|
|
wallpaper = [ ",${image}" ];
|
|
};
|
|
};
|
|
}
|