12 lines
235 B
YAML
12 lines
235 B
YAML
|
- name: Install VA-API and VDPAU
|
||
|
become: true
|
||
|
ansible.builtin.apt:
|
||
|
pkg:
|
||
|
- mesa-va-drivers
|
||
|
- vdpau-driver-all
|
||
|
- name: Install vulkan drivers
|
||
|
become: true
|
||
|
ansible.builtin.apt:
|
||
|
pkg:
|
||
|
- mesa-vulkan-drivers
|