mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2025-12-15 20:08:44 +00:00
35 lines
568 B
YAML
35 lines
568 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
|
|
- nano
|
|
- 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")'
|