Talk:DaVinci Resolve

From NixOS Wiki
Revision as of 22:10, 29 March 2024 by 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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