2022-12-29 19:11:38 -08:00
|
|
|
- name: Install system void repos
|
2022-12-27 23:46:49 -08:00
|
|
|
xbps:
|
|
|
|
name:
|
|
|
|
- void-repo-multilib # Void Linux drop-in file for the multilib repository
|
|
|
|
- void-repo-multilib-nonfree # Void Linux drop-in file for the multilib/nonfree repository
|
|
|
|
- void-repo-nonfree # Void Linux drop-in file for the nonfree repository
|
|
|
|
state: present
|
|
|
|
become: true
|
|
|
|
|
2022-12-29 19:11:38 -08:00
|
|
|
- name: Install system void packages
|
2022-12-21 00:34:22 -08:00
|
|
|
xbps:
|
2022-12-10 17:09:35 -08:00
|
|
|
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
|
2022-12-23 22:50:46 -08:00
|
|
|
- wireguard # Fast, modern, secure vpn tunnel
|
|
|
|
- wireguard-tools # Tool for wireguard
|
2022-12-27 23:46:49 -08:00
|
|
|
- cronie # Runs specified programs at scheduled times
|
|
|
|
- pipewire # Server and user space API to deal with multimedia pipelines
|
|
|
|
- libspa-bluetooth # Server and user space API to deal with multimedia pipelines - bluetooth plugins
|
|
|
|
- cifs-utils # CIFS filesystem user-space tools
|
|
|
|
- ansible # Simple deployment, configuration management and execution framework
|
|
|
|
- btrbk # Backup tool for btrfs subvolumes
|
|
|
|
- chezmoi # Manage your dotfiles across multiple machines, securely
|
|
|
|
- elogind # Standalone logind fork
|
|
|
|
- rsync # Remote fast incremental file transfer tool
|
|
|
|
- unzip # List, test and extract compressed files in a ZIP archive
|
|
|
|
- mimeo # Open files by MIME-type or file name using regular expressions
|
2022-12-28 02:05:44 -08:00
|
|
|
- busybox # Swiss Army Knife of Embedded Linux
|
2022-12-10 17:09:35 -08:00
|
|
|
state: present
|
|
|
|
become: true
|
|
|
|
|
2022-12-21 00:34:22 -08:00
|
|
|
- name: Add the flathub flatpak repository remote
|
|
|
|
flatpak_remote:
|
|
|
|
name: flathub
|
2022-12-10 17:09:35 -08:00
|
|
|
state: present
|
2022-12-21 00:34:22 -08:00
|
|
|
flatpakrepo_url: https://flathub.org/repo/flathub.flatpakrepo
|
2022-12-10 17:09:35 -08:00
|
|
|
become: true
|