Steam: Difference between revisions

imported>Cx405
update, everything tested
imported>Cx405
No edit summary
Line 69: Line 69:
== Adding missing dependencies ==
== Adding missing dependencies ==


This is can be done this way:
This can be done this way:
<syntaxHighlight lang=nix>
<syntaxHighlight lang=nix>
   ...
   ...
Line 75: Line 75:
   ...
   ...
   (steam.override { extraPkgs = pkgs: [ mono gtk3 gtk3-x11 libgdiplus zlib ]; nativeOnly = true; }).run
   (steam.override { extraPkgs = pkgs: [ mono gtk3 gtk3-x11 libgdiplus zlib ]; nativeOnly = true; }).run
  ];
...
</syntaxHighlight>
=== Bumblebee and Primus ===
This can be done this way:
<syntaxHighlight lang=nix>
  ...
  environment.systemPackages = with pkgs; [
  ...
  (steam.override { withPrimus = true; extraPkgs = pkgs: [ bumblebee glxinfo ]; nativeOnly = true; }).run
   ];
   ];
...
...