mirror of
https://github.com/gjkcz/ansible-void.git
synced 2024-11-01 00:45:59 +01:00
Install video drivers
Most PCs have an AMD GPU, but some replacements only have Intel. The intel-specific packages can later be excluded, albeit it doesn't hurt to have them installed. Intel-only hosts: - MU02 - MU03
This commit is contained in:
parent
044484499b
commit
5fe0a398f4
15
setup.yaml
15
setup.yaml
@ -99,12 +99,25 @@
|
|||||||
community.general.xbps:
|
community.general.xbps:
|
||||||
upgrade: true
|
upgrade: true
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install common packages
|
||||||
community.general.xbps:
|
community.general.xbps:
|
||||||
name: '{{ xbps_install }}'
|
name: '{{ xbps_install }}'
|
||||||
state: present
|
state: present
|
||||||
when: xbps_install
|
when: xbps_install
|
||||||
|
|
||||||
|
- name: Install video drivers
|
||||||
|
community.general.xbps:
|
||||||
|
name:
|
||||||
|
- mesa-dri
|
||||||
|
- vulkan-loader
|
||||||
|
- mesa-vulkan-radeon
|
||||||
|
- amdvlk
|
||||||
|
- xf86-video-amdgpu
|
||||||
|
- mesa-vaapi
|
||||||
|
- mesa-vdpau
|
||||||
|
- intel-video-accel
|
||||||
|
- mesa-vulkan-intel
|
||||||
|
|
||||||
- name: Recursively remove packages
|
- name: Recursively remove packages
|
||||||
community.general.xbps:
|
community.general.xbps:
|
||||||
name: '{{ xbps_remove }}'
|
name: '{{ xbps_remove }}'
|
||||||
|
Loading…
Reference in New Issue
Block a user