diff --git a/nixos/doc/manual/configuration/gpu-accel.xml b/nixos/doc/manual/configuration/gpu-accel.xml
index 9928121a56e6..251e5c26ba44 100644
--- a/nixos/doc/manual/configuration/gpu-accel.xml
+++ b/nixos/doc/manual/configuration/gpu-accel.xml
@@ -70,35 +70,12 @@ Platform Vendor Advanced Micro Devices, Inc.
Core Next (GCN) GPUs are supported through the
rocm-opencl-icd package. Adding this package to
enables OpenCL
- support. However, OpenCL Image support is provided through the
- non-free rocm-runtime-ext package. This package can
- be added to the same configuration option, but requires that
- allowUnfree option is is enabled for nixpkgs. Full
- OpenCL support on supported AMD GPUs is thus enabled as follows:
+ support:
= [
rocm-opencl-icd
- rocm-runtime-ext
];
-
-
- It is also possible to use the OpenCL Image extension without a
- system-wide installation of the rocm-runtime-ext
- package by setting the ROCR_EXT_DIR environment
- variable to the directory that contains the extension:
-
- $ export \
-ROCR_EXT_DIR=`nix-build '<nixpkgs>' --no-out-link -A rocm-runtime-ext`/lib/rocm-runtime-ext
-
-
-
- With either approach, you can verify that OpenCL Image support
- is indeed working with the clinfo command:
-
- $ clinfo | grep Image
- Image support Yes
-