Add missing apps

This commit is contained in:
Przemek Grondek 2024-08-08 01:09:26 +02:00
parent 00cde385ad
commit b9fc08acb0
7 changed files with 27 additions and 0 deletions

View File

@ -40,6 +40,7 @@
- gnome-backgrounds - gnome-backgrounds
- gnome-text-editor - gnome-text-editor
- gnome-themes-extra - gnome-themes-extra
- gvfs-smb
- gsimplecal - gsimplecal
- libreoffice-still - libreoffice-still
- nautilus - nautilus

View File

@ -3,6 +3,7 @@
community.general.pacman: community.general.pacman:
name: name:
- cups - cups
- system-config-printer
when: ansible_distribution == "Archlinux" when: ansible_distribution == "Archlinux"
- name: "[Arch] install drivers for epson printer" - name: "[Arch] install drivers for epson printer"

View File

@ -0,0 +1,5 @@
- name: "[Arch] install dymo cups driver"
shell:
cmd:
yay -S --needed --noconfirm dymo-cups-drivers
when: ansible_distribution == "Archlinux"

View File

@ -27,3 +27,8 @@
community.general.flatpak: community.general.flatpak:
state: present state: present
name: im.riot.Riot name: im.riot.Riot
- name: "[All] install Parsec"
community.general.flatpak:
state: present
name: com.parsecgaming.parsec

View File

@ -21,6 +21,8 @@
- import_tasks: network-manager.yml - import_tasks: network-manager.yml
- import_tasks: nextcloud.yml
- import_tasks: signal.yml - import_tasks: signal.yml
- import_tasks: timekpr.yml - import_tasks: timekpr.yml

View File

@ -0,0 +1,7 @@
- name: "[Arch] install nextcloud client"
become: yes
community.general.pacman:
name:
- nextcloud-client
- gnome-keyring
when: ansible_distribution == "Archlinux"

View File

@ -0,0 +1,6 @@
- name: "[Arch] install terraform"
become: yes
community.general.pacman:
name:
- terraform
when: ansible_distribution == "Archlinux"