Add TTS packages

This commit is contained in:
exu 2024-10-29 08:04:00 +01:00
parent 8a216b6222
commit fa1656a4ba

View File

@ -32,8 +32,8 @@
- name: Install other packages - name: Install other packages
community.general.pacman: community.general.pacman:
state: present
name: "{{ item }}" name: "{{ item }}"
state: present
loop: loop:
#- gnome-keyring #- gnome-keyring
#- hdparm #- hdparm
@ -139,6 +139,7 @@
- ruby-sass # code - ruby-sass # code
- shfmt # code - shfmt # code
- smartmontools # disks - smartmontools # disks
- speech-dispatcher # TTS
- stress # benchmark - stress # benchmark
- stylelint # code - stylelint # code
- swtpm # libvirt tpm support - swtpm # libvirt tpm support
@ -212,8 +213,8 @@
- name: x86_64 | Install multilib packages - name: x86_64 | Install multilib packages
community.general.pacman: community.general.pacman:
state: present
name: "{{ item }}" name: "{{ item }}"
state: present
loop: loop:
- lib32-mesa # video driver - lib32-mesa # video driver
- lib32-vulkan-intel # video driver - lib32-vulkan-intel # video driver
@ -224,6 +225,15 @@
tags: packages tags: packages
become: true become: true
- name: Install flatpak packages
community.general.flatpak:
name: "{{ item }}"
state: present
loop:
- https://github.com/Elleo/pied/releases/latest/download/com.mikeasoft.pied.flatpak
tags: packages
become: true
- name: Host | Install host specific packages - name: Host | Install host specific packages
community.general.pacman: community.general.pacman:
state: present state: present