Files
ansible-config/playbooks/apt_qol.yaml
2024-05-31 18:51:47 -07:00

16 lines
319 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
- curl
- wget
update_cache: true
state: latest