Files
nixy/home/system/hyprpaper/default.nix
Hadi 24d77739b9 UWSM Hyprland
Former-commit-id: 5bfd891d39
2025-04-18 14:09:24 +02:00

15 lines
339 B
Nix

# Hyprpaper is used to set the wallpaper on the system
{ lib, ... }: {
# The wallpaper is set by stylix
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
};
};
systemd.user.services.hyprpaper.Unit.After =
lib.mkForce "graphical-session.target";
}