nix-config/modules/scripts/battery.nix

18 lines
369 B
Nix
Raw Normal View History

2025-08-19 20:56:05 +01:00
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "battery";
runtimeInputs = with pkgs; [ upower ];
text = ''
upower -i /org/freedesktop/UPower/devices/battery_BAT1 | grep -E 'state|to full|percentage'
'';
})
];
};
}