mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
19 lines
565 B
YAML
19 lines
565 B
YAML
- name: Install system dnf packages
|
|
dnf:
|
|
name:
|
|
- 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
|
|
|
|
- name: Install system flatpaks
|
|
flatpak:
|
|
name:
|
|
- com.github.tchx84.Flatseal # Manage Flatpak permissions
|
|
state: present
|
|
become: true
|
|
|