mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
31 lines
774 B
YAML
31 lines
774 B
YAML
- name: Install system dnf packages
|
|
xbps:
|
|
name:
|
|
- git # Fast Version Control System
|
|
- git-lfs # Git extension for versioning large files
|
|
- syncthing # Continuous File Synchronization
|
|
- flatpak # Application deployment framework for desktop apps
|
|
- wireguard # Fast, modern, secure vpn tunnel
|
|
- wireguard-tools # Tool for wireguard
|
|
- cronie
|
|
- pipewire
|
|
- libspa-bluetooth
|
|
- cifs-utils
|
|
- ansible
|
|
- btrbk
|
|
- chezmoi
|
|
- elogind
|
|
- rsync
|
|
- unzip
|
|
- mimeo
|
|
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
|
|
|