reNixos/hand7s/systemd/hyprpanel-service.nix
s0me1newithhand7s 5dab6c5e28
hand7s: fmt
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-06-13 13:13:26 +03:00

30 lines
802 B
Nix

{
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";
};
};
};
};
};
}