This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/system/power.nix
James Patrick 3433f4a7e2 Added battery notify (currently don't work)
I'm fighting with udev to get it work properly.
2022-04-24 22:24:53 -04:00

19 lines
491 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.this.system.power;
in with lib; {
options.this.system.power.enable = mkEnableOption "Power Management";
config = mkIf cfg.enable {
# fan control modules
boot.extraModprobeConfig = ''
options thinkpad_acpi fan_control=1 experimental=1
'';
# battery optimizations
powerManagement.powertop.enable = true;
services.upower.enable = true;
environment.systemPackages = with pkgs; [ powertop tpacpi-bat ];
};
}