From 4de9729c8fa8e6804dcecff014dfb5b7290387d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 28 Nov 2023 12:01:23 -0300 Subject: [PATCH] monolith: install zenpower kernel module --- hosts/monolith.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/monolith.nix b/hosts/monolith.nix index 868bbf9..c78f64f 100644 --- a/hosts/monolith.nix +++ b/hosts/monolith.nix @@ -10,10 +10,15 @@ in imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; + + boot.extraModulePackages = with config.boot.kernelPackages; [ + zenpower + ]; boot.initrd.kernelModules = [ "amdgpu" ]; boot.kernelModules = [ "kvm-amd" "amdgpu" + "zenpower" ]; boot.kernelParams = [ "video=DP-1:1920x1080@144"