Created
May 15, 2018 13:43
-
-
Save FruitieX/4a1e2bc9f6f684e096e08162194cf14e to your computer and use it in GitHub Desktop.
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 characters
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"; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment