Created
August 31, 2018 15:03
-
-
Save therealpxc/570536b47a70cd3ccf49f1bdcde0239b to your computer and use it in GitHub Desktop.
my steam package overrides for Bumblebee/NVIDIA Optimus
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
# some Steam/Optimus quirks | |
nixpkgs.config.packageOverrides = superPkgs: { | |
steam = superPkgs.steam.override { | |
withPrimus = true; | |
extraPkgs = p: with p; [ | |
glxinfo # for diagnostics | |
nettools # for `hostname`, which some scripts expect | |
bumblebee # for optirun | |
virtualgl # for glxspheres | |
]; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment