From 7bd5ab3ee5541c47509ac6364d9ee06a5a873f9b Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Tue, 5 May 2026 14:03:19 -0700 Subject: [PATCH] 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. --- raspberry-pi/3/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/raspberry-pi/3/default.nix b/raspberry-pi/3/default.nix index 333f2d3f..15dfee8d 100644 --- a/raspberry-pi/3/default.nix +++ b/raspberry-pi/3/default.nix @@ -1,6 +1,10 @@ { lib, pkgs, ... }: { + imports = [ + ../common/default.nix + ]; + boot = { kernelPackages = lib.mkDefault ( pkgs.linuxPackagesFor (pkgs.callPackage ../common/kernel.nix { rpiVersion = 3; })