23 lines
304 B
Nix
23 lines
304 B
Nix
{
|
|
name,
|
|
nodes,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
services.power-profiles-daemon.enable = true;
|
|
|
|
powerManagement.powertop.enable = true;
|
|
|
|
# boot.kernelParams = [
|
|
# "pcie_aspm=force"
|
|
# ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
powertop
|
|
linuxPackages_latest.turbostat
|
|
];
|
|
}
|