16 lines
356 B
Nix
Executable File
16 lines
356 B
Nix
Executable File
{config, ...}:
|
|
{
|
|
boot = {
|
|
initrd.availableKernelModules = [ "xhci_pci" "usb_storage" "usbhid" "uas" "pcie-brcmstb"];
|
|
loader = {
|
|
grub.enable = false;
|
|
# generic-extlinux-compatible.enable= true;
|
|
raspberryPi= {
|
|
version = 4;
|
|
firmwareConfig = "dtparam=sd_poll_once=on";
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|