This commit is contained in:
iFargle 2024-01-30 17:43:44 +09:00
parent f749561c1f
commit 66414d0bf4

View file

@ -20,16 +20,24 @@
##################################################################################### #####################################################################################
# BEGIN hardware config # BEGIN hardware config
##################################################################################### #####################################################################################
boot = {
initrd.availableKernelModules = [
"xhci_pci"
"usbhid"
"usb_storage"
"vc4"
"pcie_brcmstb" # required for the pcie bus to work
"reset-raspberrypi" # required for vl805 firmware to load
];
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
loader.grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf
loader.generic-extlinux-compatible.enable = true;
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default) initrd.kernelModules = [ ];
boot.loader.grub.enable = false; kernelModules = [ ];
# Enables the generation of /boot/extlinux/extlinux.conf extraModulePackages = [ ];
boot.loader.generic-extlinux-compatible.enable = true; };
boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";