It's moving

This commit is contained in:
Hadi
2026-06-29 17:48:21 +02:00
parent 082de49ca4
commit cdffe66d72
62 changed files with 953 additions and 2147 deletions
+17
View File
@@ -0,0 +1,17 @@
# 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"
];
}