Lutris problems after update to unstable

Hello, I am trying to run a game on Lutris that I was able to run before updating my flake to unstable recently.

I can run vulkaninfo --summary with no problem, when trying to open lutris, even tho it opens I get these errors

Failed to load module: /nix/store/lvs169747jbfjrccai1xdnhf1k0z8gyc-gvfs-1.57.2/lib/gio/modules/libgvfsdbus.so
2025-10-15 18:35:15,018: Starting Lutris 0.5.18
ERROR: [Loader Message] Code 0 : vkCreateInstance: Found no drivers!
Cannot create Vulkan instance.
This problem is often caused by a faulty installation of the Vulkan driver or attempting to use a GPU that does not support Vulkan.
ERROR at /build/source/vulkaninfo/./vulkaninfo.h:456:vkCreateInstance failed with ERROR_INCOMPATIBLE_DRIVER
2025-10-15 18:35:15,072: ['vulkaninfo', '--summary'] command failed: Command '['vulkaninfo', '--summary']' returned non-zero exit status 1.
2025-10-15 18:35:15,084: "card1" is Advanced Micro Devices, Inc. [AMD/ATI] Navi 31 [Radeon RX 7900 XT/7900 XTX/7900 GRE/7900M] (1002:744c 1eae:7901 amdgpu) Driver 25.2.4
ERROR: [Loader Message] Code 0 : vkCreateInstance: Found no drivers!
Cannot create Vulkan instance.
This problem is often caused by a faulty installation of the Vulkan driver or attempting to use a GPU that does not support Vulkan.
ERROR at /build/source/vulkaninfo/./vulkaninfo.h:456:vkCreateInstance failed with ERROR_INCOMPATIBLE_DRIVER
2025-10-15 18:35:15,138: ['vulkaninfo', '--summary'] command failed: Command '['vulkaninfo', '--summary']' returned non-zero exit status 1.
2025-10-15 18:35:15,150: "card0" is Advanced Micro Devices, Inc. [AMD/ATI] Raphael (1002:164e 1458:d000 amdgpu) Driver 25.2.4
2025-10-15 18:35:15,178: Vulkan is not available or your system isn't Vulkan capable

When navigating to the game’s Runner options, Enable DXVK and Enable VKD3D are grayed out showing **Error** Vulkan is not installed or is not supported by your system

This is my graphics config

{
  hardware.amdgpu.opencl.enable = true;

  # Enable OpenGL
  hardware.graphics = {
    enable = true;
    enable32Bit = true;
    extraPackages = with pkgs; [
      rocmPackages.clr.icd
      libva-vdpau-driver
      libvdpau-va-gl
      mesa
    ];
    extraPackages32 = with pkgs.driversi686Linux; [
      libva-vdpau-driver
      libvdpau-va-gl
      mesa
    ];
  };

  environment.systemPackages = with pkgs; [
   vulkan-tools
   vulkan-loader
   vulkan-validation-layers
   vulkan-extension-layer
  ];

}

Any help is really appreciated thank you