Multilib packages are only available for x86_64
This commit is contained in:
parent
5bc60fc91b
commit
cbcc07274c
@ -6,6 +6,7 @@
|
|||||||
block: |
|
block: |
|
||||||
[multilib]
|
[multilib]
|
||||||
Include = /etc/pacman.d/mirrorlist
|
Include = /etc/pacman.d/mirrorlist
|
||||||
|
when: ansible_architecture == "x86_64"
|
||||||
tags: first
|
tags: first
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
@ -95,9 +96,6 @@
|
|||||||
- kid3 # music metadata
|
- kid3 # music metadata
|
||||||
- krita
|
- krita
|
||||||
- languagetool
|
- languagetool
|
||||||
- lib32-mesa # video driver
|
|
||||||
- lib32-vulkan-intel # video driver
|
|
||||||
- lib32-vulkan-radeon # video driver
|
|
||||||
- libreoffice-fresh # office
|
- libreoffice-fresh # office
|
||||||
- libreoffice-fresh-de # office
|
- libreoffice-fresh-de # office
|
||||||
- libva-intel-driver # VAAPI
|
- libva-intel-driver # VAAPI
|
||||||
@ -158,7 +156,6 @@
|
|||||||
- shellcheck # code
|
- shellcheck # code
|
||||||
- shfmt # code
|
- shfmt # code
|
||||||
- smartmontools # disks
|
- smartmontools # disks
|
||||||
- steam # games
|
|
||||||
- stress # benchmark
|
- stress # benchmark
|
||||||
- stylelint # code
|
- stylelint # code
|
||||||
- tesseract-data-deu
|
- tesseract-data-deu
|
||||||
@ -181,7 +178,6 @@
|
|||||||
- vulkan-intel # video driver
|
- vulkan-intel # video driver
|
||||||
- vulkan-radeon # video driver
|
- vulkan-radeon # video driver
|
||||||
- wget # network
|
- wget # network
|
||||||
- wine # windows
|
|
||||||
- wireguard-tools # vpn
|
- wireguard-tools # vpn
|
||||||
- wireplumber # audio
|
- wireplumber # audio
|
||||||
- xdg-desktop-portal-gtk # flatpak theming
|
- xdg-desktop-portal-gtk # flatpak theming
|
||||||
@ -197,6 +193,21 @@
|
|||||||
tags: packages
|
tags: packages
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
- name: Install multilib packages
|
||||||
|
community.general.pacman:
|
||||||
|
state: present
|
||||||
|
# select the lines and use 'M-x sort-lines'
|
||||||
|
name: "{{ item }}"
|
||||||
|
loop:
|
||||||
|
- steam # games
|
||||||
|
- wine # windows
|
||||||
|
- lib32-mesa # video driver
|
||||||
|
- lib32-vulkan-intel # video driver
|
||||||
|
- lib32-vulkan-radeon # video driver
|
||||||
|
when: ansible_architecture == "x86_64"
|
||||||
|
tags: packages
|
||||||
|
become: true
|
||||||
|
|
||||||
- name: Doom Emacs | Clone
|
- name: Doom Emacs | Clone
|
||||||
ansible.builtin.git:
|
ansible.builtin.git:
|
||||||
repo: https://github.com/doomemacs/doomemacs
|
repo: https://github.com/doomemacs/doomemacs
|
||||||
|
Loading…
Reference in New Issue
Block a user