config/roles/installs/tasks/cli.yml
2025-08-08 14:59:55 +03:00

34 lines
555 B
YAML

- name: Install cli tools
ansible.builtin.dnf5:
name:
# shells & shell utils
- bash
- fish
- trash-cli
# dev utils
- just
- jsonnet
- shellcheck
# edit utils
- helix
- micro
- tmux
- tmate
- ripgrep
# git
- git-delta
- difftastic
- git
# other
- ansible
state: latest
- name: Clear trash automatically every 30 days
ansible.builtin.shell:
cmd: sh
stdin: '(crontab -l ; echo "@daily $(which trash-empty) 30")'