NixOS on ARM/Raspberry Pi 5: Difference between revisions

imported>Leo60228
Update GPU support
added my solution to get bluetooth working
Line 54: Line 54:
{
{
   boot.kernelPackages = pkgs.linuxPackages_rpi4;
   boot.kernelPackages = pkgs.linuxPackages_rpi4;
}
</nowiki>}}
=== Bluetooth ===
If your bluetooth doesn't show up, and you are getting errors in dmesg regarding the serial port at 107050c00, add the following to your nixos configuration:{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{
  boot.kernelParams = [ "8250.nr_uarts=11" "console=ttyAMA10,9600" "console=tty0"];
}
}
</nowiki>}}
</nowiki>}}