Browse Source

Support for Arch (not sure if working)

ensure Flatpak runtime is installed
Cleanup
+Nheko +Joplin +BitWarden
main
therealchfkch 4 years ago
parent
commit
1ce03fc63f
  1. 33
      local.yml

33
local.yml

@ -16,6 +16,11 @@
update_cache: yes
when: ansible_distribution in ["Ubuntu", "Debian"]
- name: install updates (Arch)
pacman:
update_cache: yes
upgrade: yes
when: ansible_distribution in ["Arch"]
tasks:
- name: install base packages
@ -27,21 +32,33 @@
- tmux
- nmap
- nextcloud-desktop
- 1password #this might not be working yet since it isnt in the apt catalog
# - 1password #this might not be working yet since it isnt in the apt catalog
state: latest
update_cache: yes
# - name: install Teams
# package:
# name:
# - teams #this is flatpak, don't know if it is working yet
# state: latest
# update_cache: yes
- name: Install Flatpak
package:
name: flatpak
state: latest
- name: install Teams (flatpak)
community.general.flatpak:
name: com.microsoft.teams
state: present
- name: Install Bitwarden Flatpak
community.general.flatpak:
name: com.bitwarden.desktop
state: present
- name: Install Joplin Flatpak
community.general.flatpak:
name: net.cozic.joplin_desktop
state: present
- name: Install Nheko Flatpak
community.general.flatpak:
name: io.github.NhekoReborn.Nheko
state: present
- name: install Evolution
package:

Loading…
Cancel
Save