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.
12 lines
162 B
Nix
12 lines
162 B
Nix
{
|
|
imports = [
|
|
./config-txt.nix
|
|
./config-txt-defaults.nix
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
"usb-storage"
|
|
"usbhid"
|
|
"vc4"
|
|
];
|
|
}
|