30 lines
802 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|