14 lines
285 B
YAML
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
|