We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the original RPi4 issue there's a NixOS module snippet to configure GPU support:
{ config, pkgs, ...}: { hardware.opengl = { enable = true; setLdLibraryPath = true; package = pkgs.mesa_drivers; }; hardware.deviceTree = { kernelPackage = pkgs.linux_rpi4; overlays = [ "${pkgs.device-tree_rpi.overlays}/vc4-fkms-v3d.dtbo" ]; }; }
Unfortunately it fails to build currently with error FDT_ERR_NOTFOUND.
FDT_ERR_NOTFOUND
#79370 discusses what's the culprit and there's a patch for nixpkgs that could be adapted and tested: kwohlfahrt@7ba456e
The text was updated successfully, but these errors were encountered:
NixOS/nixos-hardware#261 solves it!
Sorry, something went wrong.
No branches or pull requests
In the original RPi4 issue there's a NixOS module snippet to configure GPU support:
Unfortunately it fails to build currently with error
FDT_ERR_NOTFOUND
.#79370 discusses what's the culprit and there's a patch for nixpkgs that could be adapted and tested: kwohlfahrt@7ba456e
The text was updated successfully, but these errors were encountered: