nixpkgs/home/services/batteryicon.nix

19 lines
250 B
Nix
Raw Normal View History

{ pkgs }:
{
Unit = {
Description = "Battery Icon";
PartOf = "graphical-session.target";
};
Service = {
ExecStart = "${pkgs.cbatticon}/bin/cbatticon -u 30";
};
Install = {
WantedBy = [
"default.target"
];
};
}