Small changes and update inputs

This commit is contained in:
2026-01-28 16:28:14 +01:00
parent 7153e2d3e3
commit bff923359c
8 changed files with 189 additions and 123 deletions

View File

@@ -1,14 +1,15 @@
# Hyprpaper is used to set the wallpaper on the system
{lib, ...}: {
{ lib, config, ... }:
{
# The wallpaper is set by stylix
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
splash_offset = 2;
};
};
systemd.user.services.hyprpaper.Unit.After =
lib.mkForce "graphical-session.target";
systemd.user.services.hyprpaper.Unit.After = lib.mkForce "graphical-session.target";
}