Files
ansible-config/playbooks/apt_qol.yaml
2024-06-14 16:41:42 -07:00

23 lines
470 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, bat, tldr, byobu
apt:
pkg:
- tmux
- vim-nox
- btop
- htop
- neofetch
- curl
- wget
- bat
- tldr
- byobu
update_cache: true
state: latest