From 105c702c2e7a1307a8600cb84ffdbcc474a2a8c9 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Tue, 5 May 2026 14:03:11 -0700 Subject: [PATCH] raspberry-pi: wire config.txt module into common profile PR #1788 added hardware.raspberry-pi.configtxt and a defaults file, but nothing imported them, so the options had no effect. Import both from common/default.nix. Board profiles that already import common/ (2, 4, 5) now apply the pi-gen-equivalent defaults. --- raspberry-pi/common/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/raspberry-pi/common/default.nix b/raspberry-pi/common/default.nix index 11f2cfc7..f80e124b 100644 --- a/raspberry-pi/common/default.nix +++ b/raspberry-pi/common/default.nix @@ -1,4 +1,9 @@ { + imports = [ + ./config-txt.nix + ./config-txt-defaults.nix + ]; + boot.initrd.availableKernelModules = [ "usb-storage" "usbhid"