Browse Source

Do not force update_cache every time

Several new applications
Migration towards flatpak instead of normal packages
main
therealchfkch 4 years ago
parent
commit
e226621b2a
  1. 28
      local.yml

28
local.yml

@ -12,8 +12,8 @@
- name: install updates (Ubuntu/Debian)
apt:
upgrade: dist
update_cache: yes
upgrade: dist
when: ansible_distribution in ["Ubuntu", "Debian"]
- name: install updates (Arch)
@ -31,7 +31,9 @@
- mc
- tmux
- nmap
- nextcloud-desktop
# - nextcloud-desktop
- alacritty
- fish
# - 1password #this might not be working yet since it isnt in the apt catalog
state: latest
@ -40,6 +42,16 @@
name: flatpak
state: latest
- name: Install Flatseal
community.general.flatpak:
name: com.github.tchx84.Flatseal
state: present
- name: Install Nextcloud Desktop app (flatpak)
community.general.flatpak:
name: com.nextcloud.desktopclient.nextcloud
state: present
- name: install Teams (flatpak)
community.general.flatpak:
name: com.microsoft.teams
@ -50,6 +62,11 @@
name: com.bitwarden.desktop
state: present
- name: Install ONLYOFFICE Flatpak
community.general.flatpak:
name: org.onlyoffice.desktopeditors
state: present
- name: Install Joplin Flatpak
community.general.flatpak:
name: net.cozic.joplin_desktop
@ -66,18 +83,15 @@
- evolution
- evolution-ews
state: latest
update_cache: yes
- name: install Messengers
package:
name:
- telegram-desktop
state: latest
update_cache: yes
- name: install Visual Studio Code
- name: install VSCodium
package:
name:
- code
- codium
state: latest
update_cache: yes
Loading…
Cancel
Save