37 lines
1.2 KiB
YAML
Raw Normal View History

2023-07-03 22:43:09 -07:00
- name: Install system 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
2023-07-03 21:14:54 -07:00
#- pipewire-codec-aptx # PipeWire Bluetooth aptX codec plugin
2023-07-03 16:57:11 -07:00
- ansible # Simple deployment, configuration management and execution framework
2023-07-03 17:40:15 -07:00
- build-essential
2023-07-03 22:50:04 -07:00
- pkg-config
2023-07-03 17:40:15 -07:00
- qemu-system
- libvirt-daemon-system
2023-07-03 16:57:11 -07:00
- trash-cli # Command line interface to the freedesktop.org trashcan
- cargo
- borgbackup
- fzf
2023-07-03 22:17:25 -07:00
- unzip
2023-07-03 16:57:11 -07:00
state: present
become: true
2023-07-03 21:08:45 -07:00
- name: Install chezmoi
2023-07-03 23:10:25 -07:00
ansible.builtin.shell: |
sh -c "$(curl -fsLS get.chezmoi.io)" -- -b $HOME/.local/bin # Manage your dotfiles across multiple machines, securely
- name: Add flatpak remote
ansible.builtin.shell: |
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
2023-07-03 23:39:23 -07:00
become: true
2023-07-03 23:10:25 -07:00
- name: Enable Multi-Arch
ansible.builtin.shell: |
dpkg --add-architecture i386
apt update
become: true