Regenerated

This commit is contained in:
2026-04-19 20:58:58 +02:00
parent 9e7a1d451b
commit 3b7d1c33de
3 changed files with 368 additions and 371 deletions
+360 -361
View File
File diff suppressed because it is too large Load Diff
+4 -5
View File
@@ -1653,20 +1653,19 @@ in
#################################
systemd.user.services.hypridle = {
description = "Hypridle (Hyprland idle daemon)";
after = [ "graphical-session.target" "hyprland-session.target" ];
partOf = [ "graphical-session.target" ];
after = [ "hyprland-session.target" ];
bindsTo = [ "hyprland-session.target" ];
serviceConfig = {
ExecStartPre = "${pkgs.bash}/bin/bash -c 'until [ -S /run/user/1000/wayland-1 ]; do sleep 0.5; done'";
ExecStart = "${pkgs.hypridle}/bin/hypridle";
Restart = "on-failure";
RestartSec = "3s";
RestartSec = "5s";
Environment = [
"HOME=/home/${username}"
"WAYLAND_DISPLAY=wayland-1"
"XDG_RUNTIME_DIR=/run/user/1000"
];
};
wantedBy = [ "graphical-session.target" ];
wantedBy = [ "hyprland-session.target" ];
};
}
#+END_SRC
@@ -31,19 +31,18 @@ in
#################################
systemd.user.services.hypridle = {
description = "Hypridle (Hyprland idle daemon)";
after = [ "graphical-session.target" "hyprland-session.target" ];
partOf = [ "graphical-session.target" ];
after = [ "hyprland-session.target" ];
bindsTo = [ "hyprland-session.target" ];
serviceConfig = {
ExecStartPre = "${pkgs.bash}/bin/bash -c 'until [ -S /run/user/1000/wayland-1 ]; do sleep 0.5; done'";
ExecStart = "${pkgs.hypridle}/bin/hypridle";
Restart = "on-failure";
RestartSec = "3s";
RestartSec = "5s";
Environment = [
"HOME=/home/${username}"
"WAYLAND_DISPLAY=wayland-1"
"XDG_RUNTIME_DIR=/run/user/1000"
];
};
wantedBy = [ "graphical-session.target" ];
wantedBy = [ "hyprland-session.target" ];
};
}