nixos/modules/system/battery.nix

10 lines
128 B
Nix
Raw Normal View History

2025-12-27 00:32:56 +01:00
{
config,
lib,
...
}: {
config = lib.mkIf config.fireproof.hardware.battery {
services.upower.enable = true;
};
}