AMD GPU: Difference between revisions

Abowen (talk | contribs)
Add Sporadic Crashes
Jopejoe1 (talk | contribs)
Remove EOL configuration
Line 4: Line 4:
For ordinary desktop / gaming usage, AMD GPUs are expected to work out of the box. As with any desktop configuration though, graphics acceleration does need to be enabled.
For ordinary desktop / gaming usage, AMD GPUs are expected to work out of the box. As with any desktop configuration though, graphics acceleration does need to be enabled.
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
# as of 24.11
hardware.graphics = {
hardware.graphics = {
   enable = true;
   enable = true;
   enable32Bit = true;
   enable32Bit = true;
};
};
# pre 24.11
hardware.opengl = {
  enable = true;
  driSupport = true;
  driSupport32Bit = true;
};
</syntaxhighlight>
</syntaxhighlight>