2024-08-17 00:02:05 -03:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
systemd.user.services.powerplay-led-idle = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Autosuspend Powerplay mousepad led";
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
After = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
Service = {
|
|
|
|
ExecStart = lib.getExe pkgs.powerplay-led-idle;
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
|
|
|
Install = {
|
2024-08-19 00:01:40 -03:00
|
|
|
WantedBy = [ "graphical-session.target" ];
|
2024-08-17 00:02:05 -03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|