nixos-config/config/battery.nix

11 lines
205 B
Nix
Raw Normal View History

{ config, lib, ... }:
2023-01-07 20:52:23 -05:00
lib.mkIf (config.platform == "laptop") {
2022-03-03 13:01:09 -05:00
services.upower = {
enable = true;
usePercentageForPolicy = true;
percentageLow = 15;
percentageCritical = 5;
};
}