Files
nixconf/modules/sys/hw/boot.nix
T

13 lines
385 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" ];
}