22
0
mirror of https://github.com/SuperSandro2000/nixos-modules.git synced 2024-06-02 06:19:22 +02:00

intel: fix typo in comment

This commit is contained in:
Sandro - 2023-05-31 14:48:40 +02:00
parent 8571b315c0
commit 81927acfec
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -12,12 +12,12 @@
intel-ocl # OpenCL library for CPU intel-ocl # OpenCL library for CPU
# video encoding/decoding hardware acceleration # video encoding/decoding hardware acceleration
intel-media-driver # broadwell or newer intel-media-driver # broadwell or newer
vaapiIntel # older harder vaapiIntel # older hardware like haswell
]; ];
extraPackages32 = with pkgs.pkgsi686Linux; lib.mkIf config.hardware.intelGPU [ extraPackages32 = with pkgs.pkgsi686Linux; lib.mkIf config.hardware.intelGPU [
# video encoding/decoding hardware acceleration # video encoding/decoding hardware acceleration
intel-media-driver # broadwell or newer intel-media-driver # broadwell or newer
vaapiIntel # older harder vaapiIntel # older hardware like haswell
]; ];
}; };
}; };