dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit 6adf88d2d34fffc33e982f51357c8795c989e28e
parent 25b85fe0b2691694e2fe82e18d151e26164b692a
Author: Chris <chris@echoz.io>
Date:   Sun, 22 Feb 2026 22:50:04 +0100

fix(hyprpaper): disable splash

Diffstat:
Mmodules/hypr/hyprpaper.nix | 15+++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/modules/hypr/hyprpaper.nix b/modules/hypr/hyprpaper.nix @@ -2,11 +2,14 @@ { home-manager.users.${user}.services.hyprpaper = { enable = true; - settings.wallpaper = [ - { - monitor = ""; - path = style.wallpaper; - } - ]; + settings = { + splash = false; + wallpaper = [ + { + monitor = ""; + path = style.wallpaper; + } + ]; + }; }; }