8 lines
246 B
Nix
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" ];
|
|
} |