raspberry-pi/3: import common profile

The Pi 3 profile didn't import ../common/default.nix, so it skipped
the shared boot.initrd.availableKernelModules (usb-storage, usbhid,
vc4). Every other board profile imports common/. Bring Pi 3 in line.
This commit is contained in:
Jamie Magee 2026-05-05 14:03:19 -07:00
parent df7783100b
commit 7bd5ab3ee5

View file

@ -1,6 +1,10 @@
{ lib, pkgs, ... }:
{
imports = [
../common/default.nix
];
boot = {
kernelPackages = lib.mkDefault (
pkgs.linuxPackagesFor (pkgs.callPackage ../common/kernel.nix { rpiVersion = 3; })