mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-07 00:22:33 +02:00
18 lines
472 B
Nix
18 lines
472 B
Nix
# Hyprpaper is used to set the wallpaper on the system
|
|
{pkgs-stable, lib, ...}: {
|
|
# The wallpaper is set by stylix
|
|
services.hyprpaper = {
|
|
enable = true;
|
|
package = pkgs-stable.hyprpaper;
|
|
settings = {
|
|
ipc = "on";
|
|
splash = false;
|
|
};
|
|
};
|
|
systemd.user.services.hyprpaper.Unit.After = lib.mkForce "graphical-session.target";
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
"systemctl --user enable --now hyprpaper.service"
|
|
];
|
|
}
|