2022-12-10 17:09:35 -08:00
|
|
|
- name: Install development dnf packages
|
2022-12-23 22:50:46 -08:00
|
|
|
xbps:
|
2022-12-10 17:09:35 -08:00
|
|
|
name:
|
2022-12-27 23:46:49 -08:00
|
|
|
- python3 # Python programming language (3.11 series)
|
2022-12-10 17:09:35 -08:00
|
|
|
- python3-pip # A tool for installing and managing Python3 packages
|
2022-12-27 23:46:49 -08:00
|
|
|
- ripgrep # Fast search tool inspired by ag and grep
|
|
|
|
- fd # Simple, fast and user-friendly alternative to find
|
|
|
|
- lazygit # Simple terminal UI for git commands
|
2022-12-10 17:09:35 -08:00
|
|
|
state: present
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: Install development python packages
|
|
|
|
ansible.builtin.pip:
|
|
|
|
name:
|
|
|
|
- ansible-lint # Command-line tool for linting playbooks, roles and collections
|
2022-12-23 22:50:46 -08:00
|
|
|
|
|
|
|
- name: Install development flatpaks
|
|
|
|
flatpak:
|
|
|
|
name:
|
|
|
|
- com.vscodium.codium # Free/Libre Open Source Software Binaries of VS Code
|
|
|
|
state: present
|
|
|
|
become: true
|