19 lines
565 B
YAML
Raw Normal View History

2022-11-23 01:26:33 -08:00
- name: Install system dnf packages
dnf:
name:
2022-11-23 01:26:33 -08:00
- git # Fast Version Control System
- python-psutil # Cross-platform library for retrieving information on running processes
- syncthing # Continuous File Synchronization
- flatpak # Application deployment framework for desktop apps
- pipewire-codec-aptx # PipeWire Bluetooth aptX codec plugin
state: present
become: true
2022-11-23 01:26:33 -08:00
- name: Install system flatpaks
2022-11-12 11:17:16 -08:00
flatpak:
2022-11-23 01:26:33 -08:00
name:
- com.github.tchx84.Flatseal # Manage Flatpak permissions
2022-11-12 11:17:16 -08:00
state: present
2022-11-17 22:04:23 -08:00
become: true