Disable IPMI watchdog in fox

Fixes: rarias/jungle#231
This commit is contained in:
2026-04-01 20:17:13 +02:00
parent 2f2bd067a9
commit 5d38b0d3a5

View File

@@ -25,6 +25,9 @@
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.kernelModules = [ "kvm-amd" "amd_uncore" "amd_hsmp" ];
# Disable IPMI watchdog as the BMC is not stable
boot.blacklistedKernelModules = [ "ipmi_watchdog" ];
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.cpu.intel.updateMicrocode = lib.mkForce false;