1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00

16ach6h: Comment out failing edid line

Fixes #795
This commit is contained in:
4JX 2024-01-19 19:46:38 +01:00
parent 603e0812c6
commit de16d678b0

View File

@ -1,4 +1,4 @@
{ pkgs, ...}:
{ pkgs, ... }:
let
# This file was obtained from the display while "DDG" mode was enabled.
@ -11,5 +11,7 @@ in
hardware.firmware = [ chip_edid ];
boot.kernelParams = [ "drm.edid_firmware=edid/16ach6h.bin" ];
boot.initrd.extraFiles."lib/firmware/edid/16ach6h.bin".source = pkgs.runCommandLocal "chip_edid" { } "cp ${./16ach6h.bin} $out";
}
# This fails at the moment, https://github.com/NixOS/nixos-hardware/issues/795
# Extra refresh rates seem to work regardless
# boot.initrd.extraFiles."lib/firmware/edid/16ach6h.bin".source = pkgs.runCommandLocal "chip_edid" { } "cp ${./16ach6h.bin} $out";
}