Link: https://github.com/nix-community/stylix/pull/1362 Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
14 lines
247 B
Nix
14 lines
247 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "hyprpaper";
|
|
humanName = "Hyprpaper";
|
|
|
|
configElements =
|
|
{ image }:
|
|
{
|
|
services.hyprpaper.settings = {
|
|
preload = [ "${image}" ];
|
|
wallpaper = [ ",${image}" ];
|
|
};
|
|
};
|
|
}
|