raspberry-pi."4": add assertion and update some source comments

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
Florian Brandes 2023-05-12 17:57:39 +02:00
parent 1ffd9949ee
commit 40a9f0ed77
No known key found for this signature in database
GPG key ID: 074048E893713170
3 changed files with 13 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ lib, pkgs, config, ... }:
{
imports = [
@ -34,6 +34,14 @@
hardware.deviceTree.filter = "bcm2711-rpi-*.dtb";
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.";
}
];
# Required for the Wireless firmware
hardware.enableRedistributableFirmware = true;
}