hand7s/hyprpanel: systemd service deleted

Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
s0me1newithhand7s 2025-07-26 11:21:03 +03:00
parent ee3876e977
commit b98e075312
No known key found for this signature in database

View file

@ -1,30 +0,0 @@
{
pkgs,
lib,
...
}: {
systemd = {
user = {
services = {
hyprpanel = {
Unit = {
Description = "Hyprpanel service.";
WantedBy = "graphical-session.target";
};
Service = {
ExecStart = "${lib.getExe pkgs.hyprpanel}";
Restart = "always";
RestartSec = 1;
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
}