Talk:DaVinci Resolve: Difference between revisions

From NixOS Wiki
imported>AimPizza
Created page with "== AMD GPU not discovered == I had to fix it with the following additions to configuration.nix <source lang="nix"> hardware.opengl = { enable = true; extraPackages = with..."
 
m fixed deprecated syntax
 
Line 1: Line 1:
== AMD GPU not discovered ==
== AMD GPU not discovered ==
I had to fix it with the following additions to configuration.nix
I had to fix it with the following additions to configuration.nix
<source lang="nix">
<syntaxhighlight lang="nix">
hardware.opengl = {
hardware.opengl = {
   enable = true;
   enable = true;
Line 9: Line 9:
   ];
   ];
};
};
</source>
</syntaxhighlight>
I'm not sure of the formal way nor the deeper workings of such drivers but the fix should be provided in the Wiki somehow in order to save people from the pain that I just went through :P
I'm not sure of the formal way nor the deeper workings of such drivers but the fix should be provided in the Wiki somehow in order to save people from the pain that I just went through :P

Latest revision as of 01:34, 5 April 2024

AMD GPU not discovered

I had to fix it with the following additions to configuration.nix

hardware.opengl = {
  enable = true;
  extraPackages = with pkgs; [
    amdvlk
    rocmPackages.clr.icd
  ];
};

I'm not sure of the formal way nor the deeper workings of such drivers but the fix should be provided in the Wiki somehow in order to save people from the pain that I just went through :P