15 lines
337 B
Nix
15 lines
337 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";
|
|
}
|