DaVinci Resolve: Difference between revisions

Marie (talk | contribs)
Make minimal example actually minimal
m Changed hardware.opengl to hardware.graphics in Unsupported GPU Processing Mode, because i got a evaluation warning when building nix
 
Line 126: Line 126:
If DaVinci Resolve shows a popup asking to review GPU configuration in preferences, and if there is no GPU detected in "Memory and GPU" in preferences, you can try the following in your <code>configuration.nix</code>:
If DaVinci Resolve shows a popup asking to review GPU configuration in preferences, and if there is no GPU detected in "Memory and GPU" in preferences, you can try the following in your <code>configuration.nix</code>:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">hardware.graphics = {
hardware.opengl = {
   enable = true;
   enable = true;
   extraPackages = with pkgs; [
   extraPackages = with pkgs; [
     rocmPackages.clr.icd
     rocmPackages.clr.icd
   ];
   ];
  };
  };</syntaxhighlight>
</syntaxhighlight>


[[Category:Applications]]
[[Category:Applications]]