Files
Workstation/ansible/pacman_daily_drivers/tasks/main.yml
ducoterra c6db306a0e Add gimp, libreoffice, and steam-native
Add image editing and document writing to the toolkit. Fix steam
streaming issues by installing steam-native.
2022-02-04 13:48:18 -05:00

32 lines
534 B
YAML

---
# Daily Driver Tools
- name: Ensure daily-driver (development, work, gaming) installed
community.general.pacman:
name:
- vim
- chromium
- steam-manjaro
- steam-native
- discord
- geary
- wine
- winetricks
- wine-mono
- wine_gecko
- iputils
- dnsutils
- iperf3
- remmina
- freerdp
- kubectl
- helm
- python
- python-pip
- make
- vlc
- seahorse # gnome keyring manager
- gimp
- libreoffice-fresh
state: present
become: yes