26 lines
999 B
YAML
Raw Normal View History

2023-07-03 16:57:11 -07:00
- name: Install system fedora packages
2023-07-03 21:12:14 -07:00
apt:
2023-07-03 16:57:11 -07: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
- wireguard-tools # Fast, modern, secure vpn tunnel
- pipewire-codec-aptx # PipeWire Bluetooth aptX codec plugin
- ansible # Simple deployment, configuration management and execution framework
2023-07-03 17:40:15 -07:00
- build-essential
- qemu-system
- libvirt-daemon-system
2023-07-03 16:57:11 -07:00
- trash-cli # Command line interface to the freedesktop.org trashcan
- android-tools # Android platform tools(adb, fastboot)
- snapper
- python3-dnf-plugin-snapper
- cargo
- borgbackup
- fzf
state: present
become: true
2023-07-03 21:08:45 -07:00
- name: Install chezmoi
ansible.builtin.shell: sh -c "$(curl -fsLS get.chezmoi.io)" -- -b $HOME/.local/bin # Manage your dotfiles across multiple machines, securely