Files
nixos-config/modules/home-manager/hyprpaper.nix
2026-01-28 16:28:14 +01:00

16 lines
342 B
Nix

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