22 lines
770 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
2022-11-29 20:22:10 -08:00
- git-lfs # Git extension for versioning large files
2022-11-23 01:26:33 -08:00
- 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
- ffmpeg # Digital VCR and streaming server
- wireguard # Fast, modern, secure vpn tunnel
- wireguard-tools # Tool for wireguard
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-12-03 23:48:35 -08:00
become: true