Files
ansible-config/playbooks/apt_qol.yaml
Vuong Hoang 5de9d22d6c updated qol
2024-06-14 21:45:47 -07:00

21 lines
424 B
YAML

---
- hosts: "*"
vars_files:
- '~/ansible/inventory/vaulted_vars.yaml'
become: yes
gather_facts: no
tasks:
- name: Install user default applications. tmux, vim-nox, btop, htop, neofetch, tldr
apt:
pkg:
- tmux
- vim-nox
- btop
- htop
- neofetch
- curl
- wget
- tldr
update_cache: true
state: latest