nixos-hardware/raspberry-pi/4/default.nix

40 lines
853 B
Nix
Raw Normal View History

2023-03-26 00:38:01 +01:00
{ lib, pkgs, ... }:
2021-05-11 09:32:03 +02:00
{
2021-05-13 02:51:38 +02:00
imports = [
2021-08-14 17:17:21 +02:00
./audio.nix
2023-03-26 00:38:01 +01:00
./backlight.nix
./cpu-revision.nix
2021-05-27 06:42:19 +02:00
./dwc2.nix
./i2c.nix
2021-05-13 02:51:38 +02:00
./modesetting.nix
2021-06-03 02:47:23 +02:00
./poe-hat.nix
./poe-plus-hat.nix
2021-05-30 14:52:18 +02:00
./tc358743.nix
./touch-ft5406.nix
2022-02-21 21:06:43 +01:00
./pwm0.nix
./pkgs-overlays.nix
2021-05-13 02:51:38 +02:00
];
2021-05-11 09:32:03 +02:00
boot = {
kernelPackages = lib.mkDefault pkgs.linuxKernel.packages.linux_rpi4;
initrd.availableKernelModules = [
"usbhid"
"usb_storage"
"vc4"
"pcie_brcmstb" # required for the pcie bus to work
"reset-raspberrypi" # required for vl805 firmware to load
];
2021-05-11 09:32:03 +02:00
loader = {
grub.enable = lib.mkDefault false;
generic-extlinux-compatible.enable = lib.mkDefault true;
2021-05-11 09:32:03 +02:00
};
};
hardware.deviceTree.filter = "bcm2711-rpi-*.dtb";
2021-05-11 09:32:03 +02:00
# Required for the Wireless firmware
hardware.enableRedistributableFirmware = true;
}