15 lines
445 B
Nix
15 lines
445 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
boot.kernelParams = [
|
|
"split_lock_detect=off"
|
|
"scsi_mod.use_blk_mq=1"
|
|
"transparent_hugepage=madvise" # CachyOS default
|
|
];
|
|
boot.loader.limine.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.extraModulePackages = [ ];
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" "i915" "amdgpu" ];
|
|
boot.kernelModules = [ "v4l2loopback" ];
|
|
}
|