Files
Numbus/modules/common/misc/power.nix
T
2026-05-02 12:52:08 +02:00

12 lines
212 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
services.autoaspm.enable = true;
powerManagement.powertop.enable = true;
boot.kernelParams = [
"pcie_aspm=force"
"consoleblank=60"
];
};
}