flake/common/amd.nix

16 lines
309 B
Nix

{ config, pkgs, ... }:
{
# AMD GPU
boot.initrd.kernelModules = [ "amdgpu" ];
services.xserver.videoDrivers = [ "amdgpu" ];
# Enable OpenCL
hardware.opengl.extraPackages = with pkgs; [
rocm-opencl-icd
rocm-opencl-runtime
];
# Enable Vulkan
hardware.opengl.driSupport = true;
}