Talk:DaVinci Resolve: Difference between revisions

 
(6 intermediate revisions by 2 users not shown)
Line 22: Line 22:
     comment = "Professional video editing, color, effects and audio post-processing";
     comment = "Professional video editing, color, effects and audio post-processing";
     exec =
     exec =
    let
      let
         script = pkgs.writeShellScriptBin "resolve-wrapper" ''
         script = pkgs.writeShellScriptBin "resolve-wrapper" ''
        #!/bin/sh
          #!/bin/sh
        qdbus org.kde.kded6 /kded org.kde.kded6.unloadModule appmenu
          qdbus org.kde.kded6 /kded org.kde.kded6.unloadModule appmenu
        exec ${pkgs.davinci-resolve}/bin/davinci-resolve "$@"
          exec ${pkgs.davinci-resolve}/bin/davinci-resolve "$@"
        qdbus org.kde.kded6 /kded org.kde.kded6.loadModule appmenu
          qdbus org.kde.kded6 /kded org.kde.kded6.loadModule appmenu
         '';
         '';
    in
      in
    "${script}/bin/resolve-wrapper %U";
      "${script}/bin/resolve-wrapper %U";
     icon = "davinci-resolve";
     icon = "davinci-resolve";
     type = "Application";
     type = "Application";
     categories = [
     categories = [
    "AudioVideo"
      "AudioVideo"
    "AudioVideoEditing"
      "AudioVideoEditing"
    "Video"
      "Video"
    "Graphics"
      "Graphics"
     ];
     ];
};
};
</syntaxhighlight>
</syntaxhighlight>


Another solution is setting it with home.file but this felt more nix like using home-manager's available options[[User:Sophimoo|Sophimoo]] ([[User talk:Sophimoo|talk]]) 20:42, 19 September 2025 (UTC)
Another solution is setting it with home.file but this felt more nix like using home-manager's available options
 
== AMD GPU issue ==
 
the proposed amd gpu configuration resulted in crashing after running davinci-resolve. The previous discussion already mentioned probably the same issue. I could fix it with another approach though:
 
```
 
      hardware = {
 
        graphics = {
 
          enable = true;
 
        };
 
        amdgpu.opencl.enable = true;
 
      };
 
``` [[User:Stencill|Stencill]] ([[User talk:Stencill|talk]]) 11:44, 21 October 2025 (UTC)
 
EDIT: It does not crash anymore like so but poses other issues such as not showing the clips and thumbnails.
Return to "DaVinci Resolve" page.