hyprpaper: disable splash (#2146)
Some checks failed
Label Merge Conflicts / conflicts (push) Has been cancelled
Documentation / docs (push) Has been cancelled

Link: https://github.com/nix-community/stylix/pull/2146

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Morten Munk 2026-01-16 23:44:15 +01:00 committed by GitHub
parent 908d40690f
commit 590e5c68c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,9 +3,12 @@ mkTarget {
config =
{ image }:
{
services.hyprpaper.settings.wallpaper = lib.singleton {
monitor = "";
path = image;
services.hyprpaper.settings = {
wallpaper = lib.singleton {
monitor = "";
path = image;
};
splash = false;
};
};
}