10 lines
237 B
Nix
10 lines
237 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.settings.programs.powertop = {
|
|
enable = lib.mkEnableOption "enables powertop";
|
|
};
|
|
|
|
config = lib.mkIf config.settings.programs.powertop.enable {
|
|
powerManagement.powertop.enable = true;
|
|
};
|
|
}
|