Link: https://github.com/nix-community/stylix/pull/2146 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
14 lines
242 B
Nix
14 lines
242 B
Nix
{ lib, mkTarget, ... }:
|
|
mkTarget {
|
|
config =
|
|
{ image }:
|
|
{
|
|
services.hyprpaper.settings = {
|
|
wallpaper = lib.singleton {
|
|
monitor = "";
|
|
path = image;
|
|
};
|
|
splash = false;
|
|
};
|
|
};
|
|
}
|