33 lines
1.1 KiB
YAML
Raw Normal View History

2023-04-01 16:23:45 -07:00
- name: Install system arch packages
pacman:
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
- libfreeaptx # PipeWire Bluetooth aptX codec plugin
- ansible # Simple deployment, configuration management and execution framework
#- '@Development tools' # Development tools for Fedora
#- '@virtualization' # Virtualization tools for Fedora
- trash-cli # Command line interface to the freedesktop.org trashcan
- android-tools # Android platform tools(adb, fastboot)
- snapper
- cargo
- chezmoi
- linux
- linux-headers
- linux-zen
- linux-zen-headers
- base-devel
2023-04-03 14:00:04 -07:00
- python-setuptools
- pipewire
2023-04-01 16:23:45 -07:00
state: present
become: true
- name: Add the flathub flatpak repository remote
tags: ["once"]
shell: |
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
become: true