dotfiles/modules/monitoring/powertop/default.nix

21 lines
337 B
Nix
Raw Normal View History

2023-03-26 17:11:18 +00:00
{
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.aa.monitoring.powertop;
in {
options.aa.monitoring.powertop = with types; {
enable = mkEnableOption "powertop";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [powertop];
powerManagement.powertop.enable = true;
};
}