23 lines
470 B
YAML
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
|