env/roles/system-packages/tasks/main.yml

21 lines
346 B
YAML

---
- name: Ensure system up-to-date
become: true
apt:
update_cache: true
upgrade: "yes"
- name: Install terminal & shell
apt:
pkg:
- zsh
- tmux
- name: Install CLI tooling
apt:
pkg:
- shellcheck
- gh
- name: Install DB-related tooling
apt:
pkg:
- postgresql
- postgresql-contrib