27 lines
543 B
YAML
27 lines
543 B
YAML
- name: Install packages
|
|
apt:
|
|
name:
|
|
- chromium
|
|
- vlc
|
|
- nfs-common
|
|
|
|
- name: Remove packages
|
|
apt:
|
|
name:
|
|
- mintwelcome
|
|
- mintupdate
|
|
state: absent
|
|
|
|
|
|
- name: Add Flathub repository
|
|
community.general.flatpak_remote:
|
|
name: flathub
|
|
state: present
|
|
method: system
|
|
flatpakrepo_url: https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
- name: Install ONLYOFFICE Desktop Editors via Flatpak
|
|
community.general.flatpak:
|
|
name: org.onlyoffice.desktopeditors
|
|
remote: flathub
|
|
state: present |