diff --git a/profiles/hardware/amdgpu.nix b/profiles/hardware/amdgpu.nix new file mode 100644 index 0000000..6895a9b --- /dev/null +++ b/profiles/hardware/amdgpu.nix @@ -0,0 +1,8 @@ +{ ... }: { + boot.initrd.kernelModules = [ "amdgpu" ]; + + services.xserver.videoDrivers = [ "amdgpu" ]; + + hardware.opengl.driSupport = true; + hardware.opengl.driSupport32Bit = true; +}