config/roles/installs/tasks/cli.yml
2025-08-09 20:19:59 +03:00

38 lines
609 B
YAML

- name: Install cli tools
ansible.builtin.dnf5:
name:
# shells & shell utils
- bash
- fish
- trash-cli
- bat
# dev utils
- just
- jsonnet
- shellcheck
# edit utils
- helix
- micro
# - nano
- tmux
- tmate
- ripgrep
# git
- git-delta
- difftastic
- git
# other
- ansible
- ansible-lint
state: latest
- name: Clear trash automatically every 30 days
ansible.builtin.cron:
name: "empty trash"
special_time: "daily"
job: "$(which trash-empty) 30"