feat(role): add jq

This commit is contained in:
Oliver Davies 2022-04-05 14:04:51 +01:00
parent 5a3fab8f53
commit 3591a72612
2 changed files with 8 additions and 0 deletions

View file

@ -11,6 +11,7 @@
- role: gnome-tweak-tools
- role: git
- role: htop
- role: jq
- role: neovim
- role: neovim-lsp
- role: npm

7
roles/jq/tasks/main.yaml Normal file
View file

@ -0,0 +1,7 @@
---
- name: Install
ansible.builtin.package:
name:
- jq
state: latest
become: true