Regenerated

This commit is contained in:
2026-04-19 18:41:53 +02:00
parent 42322a8cf3
commit 25d5c47033
4 changed files with 380 additions and 371 deletions
@@ -31,12 +31,15 @@ in
#################################
systemd.user.services.hypridle = {
description = "Hypridle (Hyprland idle daemon)";
after = [ "graphical-session.target" ];
after = [ "graphical-session.target" "hyprland-session.target" ];
requires = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = "${pkgs.hypridle}/bin/hypridle";
Restart = "always";
Restart = "on-failure";
RestartSec = "5s";
StartLimitBurst = "5";
StartLimitIntervalSec = "30s";
};
wantedBy = [ "default.target" ];
wantedBy = [ "graphical-session.target" ];
};
}