mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2025-12-25 08:48:44 +00:00
39 lines
619 B
YAML
39 lines
619 B
YAML
- name: Installing cli tools
|
|
become: true
|
|
ansible.builtin.dnf5:
|
|
name:
|
|
# shells & common utils
|
|
- bash
|
|
- fish
|
|
- trash-cli
|
|
- bat
|
|
- htop
|
|
|
|
# dev utils
|
|
- just
|
|
- jsonnet
|
|
- shellcheck
|
|
|
|
# edit utils
|
|
- helix
|
|
- micro
|
|
# - nano
|
|
- tmux
|
|
- tmate
|
|
- ripgrep
|
|
|
|
# git
|
|
- git-delta
|
|
- difftastic
|
|
- git
|
|
|
|
# other
|
|
- cronie
|
|
|
|
state: latest
|
|
|
|
- name: Clear trash automatically every 30 days
|
|
ansible.builtin.cron:
|
|
name: "empty trash"
|
|
special_time: "daily"
|
|
job: "$(which trash-empty) 30"
|