10.nixos-hardware/raspberry-pi/common/default.nix
Jamie Magee 105c702c2e 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.
2026-05-05 14:04:51 -07:00

12 lines
162 B
Nix

{
imports = [
./config-txt.nix
./config-txt-defaults.nix
];
boot.initrd.availableKernelModules = [
"usb-storage"
"usbhid"
"vc4"
];
}