Files
nixconf/modules/sys/hw/boot.nix
T
2026-06-01 18:46:41 -06:00

8 lines
246 B
Nix

{ pkgs, ... }:
{
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" ];
}