Steam: Difference between revisions
m →Tips and tricks: enhance: snippet |
MicahCowan (talk | contribs) m →Steam fails to start. What do I do?: Add explanation of hardware.graphics.enable[32Bit] |
||
| Line 308: | Line 308: | ||
<translate> | <translate> | ||
<!--T:34--> | <!--T:34--> | ||
One common issue preventing steam from being able to start, at least on <code>x86-64</code> platforms, is not having the following options enabled in your <code>/etc/nixos/hardware-configuration.nix</code>: | |||
</translate> | |||
{ | |||
hardware.graphics.enable = true; | |||
hardware.graphics.enable32Bit = true; | |||
} | |||
<translate> | |||
If you have those options set (or 32-bit isn't applicable to your system/platform) and still can't run steam, then run <code>strace steam -dev -console 2> steam.logs</code> in the terminal. If <code>strace</code> is not installed, temporarily install it using <code>nix-shell -p strace</code> or <code>nix run nixpkgs#strace -- steam -dev -console 2> steam.logs</code> (if using Flakes). After that, create a bug report. <!-- This is vague. Where should the user create a bug report? --> | |||
</translate> | </translate> | ||