From bd5b0dcec8efe8e2505270221078295dc7a5fd65 Mon Sep 17 00:00:00 2001 From: Updater Date: Wed, 29 May 2024 12:29:21 -0400 Subject: [PATCH] feat(wim): add acpi_call to hardware config --- devices/wim/hardware-configuration.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/devices/wim/hardware-configuration.nix b/devices/wim/hardware-configuration.nix index 1570a6e..7d421c8 100644 --- a/devices/wim/hardware-configuration.nix +++ b/devices/wim/hardware-configuration.nix @@ -10,11 +10,15 @@ boot = { kernelPackages = pkgs.linuxPackages_zen; - kernelParams = ["amd_pstate=active"]; - kernelModules = ["amdgpu" "kvm-amd"]; + kernelParams = [ + "amd_pstate=active" + ]; + kernelModules = ["amdgpu" "kvm-amd" "acpi_call"]; - # Zenpower for ryzen cpu monitoring - extraModulePackages = with config.boot.kernelPackages; [zenpower]; + extraModulePackages = with config.boot.kernelPackages; [ + acpi_call + zenpower + ]; blacklistedKernelModules = ["k10temp"]; initrd = {