mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
27 lines
563 B
Nix
27 lines
563 B
Nix
{ lib, pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
./audio.nix
|
|
./dwc2.nix
|
|
./i2c.nix
|
|
./modesetting.nix
|
|
./poe-hat.nix
|
|
./tc358743.nix
|
|
];
|
|
|
|
boot = {
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_rpi4;
|
|
initrd.availableKernelModules = [ "usbhid" "usb_storage" "vc4" ];
|
|
|
|
loader = {
|
|
grub.enable = lib.mkDefault false;
|
|
generic-extlinux-compatible.enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
hardware.deviceTree.filter = "bcm2711-rpi-*.dtb";
|
|
|
|
# Required for the Wireless firmware
|
|
hardware.enableRedistributableFirmware = true;
|
|
}
|