mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 08:49:42 +00:00
20 lines
488 B
Nix
20 lines
488 B
Nix
|
{ pkgs, lib, config, ...}: let
|
||
|
inherit (lib) mkIf;
|
||
|
deviceType = config.myOptions.device.roles.type;
|
||
|
acceptedTypes = ["laptop"];
|
||
|
in {
|
||
|
config = mkIf (builtins.elem deviceType acceptedTypes) {
|
||
|
services = {
|
||
|
# DBus service that provides power management support to applications
|
||
|
upower = {
|
||
|
enable = true;
|
||
|
percentageLow = 15;
|
||
|
percentageCritical = 5;
|
||
|
percentageAction = 3;
|
||
|
criticalPowerAction = "Hibernate";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|