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 update_cache: yes
when: ansible_distribution in ["Ubuntu", "Debian"] when: ansible_distribution in ["Ubuntu", "Debian"]
- name: install updates (Arch)
pacman:
update_cache: yes
upgrade: yes
when: ansible_distribution in ["Arch"]
tasks: tasks:
- name: install base packages - name: install base packages
@ -27,22 +32,34 @@
- tmux - tmux
- nmap - nmap
- nextcloud-desktop - 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 state: latest
update_cache: yes
# - name: install Teams - name: Install Flatpak
# package: package:
# name: name: flatpak
# - teams #this is flatpak, don't know if it is working yet state: latest
# state: latest
# update_cache: yes
- name: install Teams (flatpak) - name: install Teams (flatpak)
community.general.flatpak: community.general.flatpak:
name: com.microsoft.teams name: com.microsoft.teams
state: present 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 - name: install Evolution
package: package:
name: name:

Loading…
Cancel
Save