nixos-config/hardware/gpu-amd.nix

19 lines
407 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
hardware.opengl = {
driSupport = true;
driSupport32Bit = true;
2023-04-09 21:48:41 +02:00
extraPackages = with pkgs; [ vaapiIntel libvdpau-va-gl vaapiVdpau ];
extraPackages32 = with pkgs.driversi686Linux; [
vaapiIntel
libvdpau-va-gl
vaapiVdpau
];
};
2022-04-05 19:40:04 +02:00
2023-04-09 21:48:41 +02:00
environment.systemPackages = with pkgs; [ glxinfo vulkan-tools ];
}