ansible-playbooks/roles/system/base/tasks/main.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

21 lines
465 B
YAML

---
- name: Install minimal development environment tools
include: dev_minimal.yml
tags: dev_minimal
- name: Install additional development tools
include: dev_extra.yml
tags: dev_extra
- name: Install Flatpak remotes and desktop applications (requires `flatpak`)
include: flatpak_desktop_apps.yml
tags: flatpak_desktop_apps
- name: Install i18n-related tools
include: i18n.yml
tags: i18n
- name: Install fonts
include: fonts.yml
tags: fonts