16 lines
342 B
Nix
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";
|
|
}
|