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:
parent
df7783100b
commit
7bd5ab3ee5
1 changed files with 4 additions and 0 deletions
|
|
@ -1,6 +1,10 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../common/default.nix
|
||||
];
|
||||
|
||||
boot = {
|
||||
kernelPackages = lib.mkDefault (
|
||||
pkgs.linuxPackagesFor (pkgs.callPackage ../common/kernel.nix { rpiVersion = 3; })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue