mirror of
https://github.com/foo-dogsquared/ansible-playbooks.git
synced 2025-02-07 12:19:11 +00:00
![Gabriel Arazas](/assets/img/avatar_default.png)
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.
21 lines
465 B
YAML
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
|