nixos/modules/system/battery.nix
2025-12-27 00:32:56 +01:00

9 lines
128 B
Nix

{
config,
lib,
...
}: {
config = lib.mkIf config.fireproof.hardware.battery {
services.upower.enable = true;
};
}