Skip to content

Instantly share code, notes, and snippets.

@therealpxc
Created August 31, 2018 15:03
Show Gist options
  • Save therealpxc/570536b47a70cd3ccf49f1bdcde0239b to your computer and use it in GitHub Desktop.
Save therealpxc/570536b47a70cd3ccf49f1bdcde0239b to your computer and use it in GitHub Desktop.
my steam package overrides for Bumblebee/NVIDIA Optimus
# 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