blob: 9332322f512ccd2325e3b363788164a177b8421f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: Update Aptitude
become: true
apt:
update_cache: true
tags:
- always
- name: Install dependencies
become: true
apt:
name: [curl, git, zsh, docker, fzf, tmux, stow, unzip, zip]
tags:
- always
|