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

50 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, pkgs, config, ... }:
2021-05-11 07:32:03 +00:00
{
2021-05-13 00:51:38 +00:00
imports = [
2021-08-14 15:17:21 +00:00
./audio.nix
2023-03-25 23:38:01 +00:00
./backlight.nix
./cpu-revision.nix
2021-05-27 04:42:19 +00:00
./dwc2.nix
./i2c.nix
2021-05-13 00:51:38 +00:00
./modesetting.nix
2021-06-03 00:47:23 +00:00
./poe-hat.nix
./poe-plus-hat.nix
2021-05-30 12:52:18 +00:00
./tc358743.nix
./touch-ft5406.nix
2022-02-21 20:06:43 +00:00
./pwm0.nix
./pkgs-overlays.nix
2023-09-12 14:29:55 +00:00
./xhci.nix
2023-10-25 12:51:48 +00:00
./digi-amp-plus.nix
2021-05-13 00:51:38 +00:00
];
2021-05-11 07:32:03 +00: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 07:32:03 +00:00
loader = {
grub.enable = lib.mkDefault false;
generic-extlinux-compatible.enable = lib.mkDefault true;
2021-05-11 07:32:03 +00:00
};
};
hardware.deviceTree.filter = lib.mkDefault "bcm2711-rpi-*.dtb";
2021-05-11 07:32:03 +00:00
assertions = [
{
assertion = (lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.1");
message = "This version of raspberry pi 4 dts overlays requires a newer kernel version (>=6.1). Please upgrade nixpkgs for this system.";
}
];
2021-05-11 07:32:03 +00:00
# Required for the Wireless firmware
hardware.enableRedistributableFirmware = true;
}