NixOS on ARM/Raspberry Pi 4: Difference between revisions
imported>FPtje Add reference for bluetooth and audio issues when on Raspberry Pi kernel |
imported>Valodim adapt hdmi-cec for nixos-22.11 |
||
Line 218: | Line 218: | ||
# an overlay to enable raspberrypi support in libcec, and thus cec-client | # an overlay to enable raspberrypi support in libcec, and thus cec-client | ||
nixpkgs.overlays = [ | nixpkgs.overlays = [ | ||
(self: super: { libcec = super.libcec.override { inherit (self) libraspberrypi; }; }) | # nixos-22.05 | ||
# (self: super: { libcec = super.libcec.override { inherit (self) libraspberrypi; }; }) | |||
# nixos-22.11 | |||
(self: super: { libcec = super.libcec.override { withLibraspberrypi = true; }; }) | |||
]; | ]; | ||