2023-01-03 21:17:49 -05:00
|
|
|
{ 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;
|
|
|
|
};
|
|
|
|
}
|