Created
May 15, 2018 13:43
-
-
Save FruitieX/4a1e2bc9f6f684e096e08162194cf14e to your computer and use it in GitHub Desktop.
Revisions
-
FruitieX created this gist
May 15, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ with import <nixpkgs> {}; stdenv.mkDerivation rec { name = "customEdid"; src = ./1920x1080.bin; phases = [ "installPhase" ]; installPhase = '' mkdir -p $out/lib/firmware cp ${src} $out/lib/firmware ''; meta = { description = "Custom EDID for forcing 120 Hz refresh rate on Asus G53-SX"; }; }