ansible-playbooks/roles/system/base/tasks/dev_minimal.yml
Gabriel Arazas 7581863a4f Modularize tasks into roles
Now, it's becoming similar to my NixOS configuration. Not as declarative
and working out of the box as it requires a server but it's the closest
thing. I'll explore more configurations as I go along.
2022-03-17 17:38:47 +08:00

39 lines
597 B
YAML

---
- name: Set minimal development environment
dnf:
state: present
name:
- neovim
- python-neovim
- git
- just
- kitty
- kitty-doc
- kitty-terminfo
- man-db
- man-pages
- name: Setup container development tools
dnf:
state: present
name:
- podman
- toolbox
- openssl
- name: Install backup tools
dnf:
state: present
name:
- borgbackup
- borgmatic
- name: Install extra build systems
dnf:
state: present
name:
- cmake
- make
- meson
- ninja-build