48 lines
942 B
YAML
48 lines
942 B
YAML
|
|
---
|
||
|
|
########
|
||
|
|
# Install flatpack debvian package
|
||
|
|
- name: Install flatpack debian package
|
||
|
|
apt:
|
||
|
|
name: flatpak
|
||
|
|
state: latest
|
||
|
|
environment:
|
||
|
|
http_proxy: ''
|
||
|
|
|
||
|
|
########
|
||
|
|
# Flathub repo hinzufügen
|
||
|
|
- name: Add the flathub flatpak repository remote to the user installation
|
||
|
|
community.general.flatpak_remote:
|
||
|
|
name: flathub
|
||
|
|
state: present
|
||
|
|
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||
|
|
method: system
|
||
|
|
|
||
|
|
|
||
|
|
######
|
||
|
|
# Qrca
|
||
|
|
- name: Install Qrca
|
||
|
|
community.general.flatpak:
|
||
|
|
name: org.kde.qrca
|
||
|
|
remote: flathub
|
||
|
|
method: system
|
||
|
|
state: present
|
||
|
|
|
||
|
|
######
|
||
|
|
# PrusaSlicer
|
||
|
|
- name: Install Prusa Slicer
|
||
|
|
community.general.flatpak:
|
||
|
|
name: com.prusa3d.PrusaSlicer
|
||
|
|
remote: flathub
|
||
|
|
method: system
|
||
|
|
state: present
|
||
|
|
|
||
|
|
######
|
||
|
|
# Cryptomator Flatpak
|
||
|
|
- name: Install Cryptomator
|
||
|
|
community.general.flatpak:
|
||
|
|
name: org.cryptomator.Cryptomator
|
||
|
|
remote: flathub
|
||
|
|
method: system
|
||
|
|
state: present
|
||
|
|
|