MyNixOS website logo
option

hardware.display.edid.packages

List of packages containing EDID binary files at $out/lib/firmware/edid. Such files will be available for use in drm.edid_firmware kernel parameter as edid/<filename>.

You can craft one directly here or use sibling options linuxhw and modelines.

Declarations
Type
list of package
Default
[ ]
Example
[
  (pkgs.runCommand "edid-custom" {} ''
    mkdir -p "$out/lib/firmware/edid"
    base64 -d &gt; "$out/lib/firmware/edid/custom1.bin" &lt;&lt;'EOF'
    <insert <="" `base64="" base64="" card0-...="" class="" drm="" edid="" edid`="" encoded="" file="" here="" sys="" your="">
    EOF
  '')
]
</insert>