Files
ansible-config/playbooks/apt_qol.yaml
2024-05-31 16:25:11 -07:00

14 lines
285 B
YAML

- hosts: "*"
become: yes
tasks:
- name: Install user default applications. tmux, vim-nox, btop, htop, neofetch
apt:
pkg:
- tmux
- vim-nox
- btop
- htop
- neofetch
update_cache: true
state: latest