summaryrefslogtreecommitdiff
path: root/modules/amd.nix
blob: 6ec3e2bfcbf65efdf73c21a5ea37a1f76d310f06 (plain)
1
2
3
4
5
6
7
8
{ lib, config, ... }:
let
  kver = config.boot.kernelPackages.kernel.version;
in
{
  boot.kernelParams = [ "amd_pstate=active" ];
  hardware.cpu.amd.updateMicrocode = config.hardware.enableRedistributableFirmware;
}