mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
Merge #633
633: [FocusGen1M2] Disable TPM interrupt due to upstream bug r=Mic92 a=ghostbuster91 Co-authored-by: ghostbuster91 <ghostbuster91@users.noreply.github.com>
This commit is contained in:
commit
4cc688ee71
1 changed files with 4 additions and 0 deletions
|
@ -11,6 +11,10 @@
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.kernelParams = [
|
||||||
|
"tpm_tis.interrupts=0" # Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=204121
|
||||||
|
# without this, kacpid worker thread consumes 100% cpu on kernels 5.15.111 and up
|
||||||
|
];
|
||||||
boot.blacklistedKernelModules = [ "i2c_nvidia_gpu" ];
|
boot.blacklistedKernelModules = [ "i2c_nvidia_gpu" ];
|
||||||
|
|
||||||
hardware.nvidia.modesetting.enable = lib.mkDefault true;
|
hardware.nvidia.modesetting.enable = lib.mkDefault true;
|
||||||
|
|
Loading…
Reference in a new issue