Files
Workstation/ansible/pacman_system_tools/tasks/main.yml
ducoterra 838dad0302 Move single ansible playbook to ansible directory
Make ansible playbook properly- use ansible-galaxy init commands.
2022-01-31 13:44:46 -05:00

16 lines
276 B
YAML

---
# System Tools
- name: Ensure system-level tools (device management stuff) installed
community.general.pacman:
name:
- grub
- glances
- htop
- curl
- wget
- dconf-editor
- yay
- unzip
state: present
become: yes