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
+364 -361
View File
File diff suppressed because it is too large Load Diff
+8 -5
View File
@@ -1653,13 +1653,16 @@ 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" ];
};
}
#+END_SRC
@@ -2714,7 +2717,7 @@ exec-once = ~/.config/scripts/set-workspace-wallpaper.sh
exec-once = ~/.config/scripts/workspace-listener.sh
exec-once = /run/current-system/sw/libexec/polkit-gnome-authentication-agent-1
exec-once = nextcloud --background
exec-once = hypridle
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
#+END_SRC
** =generated/.config/hypr/hypridle.conf=
@@ -9,4 +9,4 @@ exec-once = ~/.config/scripts/set-workspace-wallpaper.sh
exec-once = ~/.config/scripts/workspace-listener.sh
exec-once = /run/current-system/sw/libexec/polkit-gnome-authentication-agent-1
exec-once = nextcloud --background
exec-once = hypridle
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
@@ -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" ];
};
}