11.stylix/modules/hyprpaper/hm.nix
Morten Munk 590e5c68c4
Some checks failed
Label Merge Conflicts / conflicts (push) Has been cancelled
Documentation / docs (push) Has been cancelled
hyprpaper: disable splash (#2146)
Link: https://github.com/nix-community/stylix/pull/2146

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2026-01-16 23:44:15 +01:00

14 lines
242 B
Nix

{ lib, mkTarget, ... }:
mkTarget {
config =
{ image }:
{
services.hyprpaper.settings = {
wallpaper = lib.singleton {
monitor = "";
path = image;
};
splash = false;
};
};
}