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