DaVinci Resolve: Difference between revisions

NexRX (talk | contribs)
Correct the placement of `hardware.amdgpu.opencl.enable = true;`
Momi V (talk | contribs)
Document Resolve Studio potentially needing a UDEV rule to get access to the USB License dongle
 
(One intermediate revision by one other user not shown)
Line 112: Line 112:


If you can spot a line similar to <code>Cannot mix incompatible Qt library (5.15.12) with this library (5.15.2)</code>, and have configured QT options in your NixOS configuration (<code>qt.enable = true;</code>), try disabling them.
If you can spot a line similar to <code>Cannot mix incompatible Qt library (5.15.12) with this library (5.15.2)</code>, and have configured QT options in your NixOS configuration (<code>qt.enable = true;</code>), try disabling them.
=== Resolve Studio crashes during License check with USB dongle ===
When Resolve Studio starts fine as root, but crashes when you are trying to run it as a normal user and you are using a USB License Key Dongle you might need to add a UDEV rule to allow user access to the USB device<ref>https://github.com/zelikos/davincibox#resolve-studio-crashes-on-checking-licences</ref>:<syntaxhighlight lang="nix">
# DaVinci Resolve UDEV
services.udev.extraRules = ''
  SUBSYSTEM=="usb", ATTR{idVendor}=="096e", MODE="0664", GROUP="users", TAG+="uaccess"
'';
</syntaxhighlight>


=== Resolve crashes on Edit/Fusion tab with Intel iGPU ===
=== Resolve crashes on Edit/Fusion tab with Intel iGPU ===
If you are using <code>intel-compute-runtime-legacy1</code> and DaVinci Resolve crashes whenever you try to switch to Edit or Fusion tab, it indicates the issue with the latest package. If you want to learn more about how to pinning packages works you can read [[FAQ/Pinning Nixpkgs|this article]].  
If you are using <code>intel-compute-runtime-legacy1</code> and DaVinci Resolve crashes whenever you try to switch to Edit or Fusion tab, it indicates the issue with the latest package. If you want to learn more about how pinning packages to specific versions works, you can read [[FAQ/Pinning Nixpkgs|this article]].  


Here's the solution for [[NixOS system configuration#Defining NixOS as a flake|flake-based]] NixOS system:
Here's the solution for [[NixOS system configuration#Defining NixOS as a flake|flake-based]] NixOS system: