11 lines
205 B
Nix
11 lines
205 B
Nix
{ config, lib, ... }:
|
|
lib.mkIf (config.platform == "laptop") {
|
|
services.upower = {
|
|
enable = true;
|
|
|
|
usePercentageForPolicy = true;
|
|
percentageLow = 15;
|
|
percentageCritical = 5;
|
|
};
|
|
}
|