mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 13:22:34 +02:00
7acddfafa1
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
18 lines
426 B
Nix
18 lines
426 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;
|
|
};
|
|
};
|
|
systemd.user.services.hyprpaper.Unit.After =
|
|
lib.mkForce "graphical-session.target";
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
"systemctl --user enable --now hyprpaper.service"
|
|
];
|
|
}
|