mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 19:06:06 -07:00
24 lines
797 B
YAML
24 lines
797 B
YAML
- name: Install system dnf packages
|
|
xbps:
|
|
name:
|
|
- git # Fast Version Control System
|
|
- git-lfs # Git extension for versioning large files
|
|
#- 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
|
|
#- wireguard # Fast, modern, secure vpn tunnel
|
|
#- wireguard-tools # Tool for wireguard
|
|
#- anacron
|
|
- cifs-utils
|
|
state: present
|
|
become: true
|
|
|
|
- name: Add the flathub flatpak repository remote
|
|
flatpak_remote:
|
|
name: flathub
|
|
state: present
|
|
flatpakrepo_url: https://flathub.org/repo/flathub.flatpakrepo
|
|
become: true
|
|
|