diff --git a/hosts/youko/hardware.nix b/hosts/youko/hardware.nix index 2160bd9..0f1386d 100644 --- a/hosts/youko/hardware.nix +++ b/hosts/youko/hardware.nix @@ -1,5 +1,7 @@ +{ config, ... }: { boot = { + extraModulePackages = with config.boot.kernelPackages; [ it87 ]; initrd.availableKernelModules = [ "nvme" "xhci_pci" @@ -11,7 +13,11 @@ kernelModules = [ "kvm-amd" "i2c-dev" + "it87" ]; + extraModprobeConfig = '' + options it87 ignore_resource_conflict=1 + ''; }; services.smartd.enable = true;