first commit

This commit is contained in:
Fabio Scotto di Santolo
2026-03-12 14:36:24 +01:00
commit 6e0f5eb83b
41 changed files with 404 additions and 0 deletions

31
ansible/site.yml Normal file
View File

@@ -0,0 +1,31 @@
---
- name: Converge all machines
hosts: all
become: true
roles:
- base
- role: packages_void
when: "'void' in group_names"
- role: packages_ubuntu
when: "'ubuntu' in group_names"
- role: services_runit
when: "'void' in group_names"
- role: services_systemd
when: "'ubuntu' in group_names"
- role: profile_desktop_i3
when: "'desktop' in group_names"
- role: profile_workstation_gnome
when: "'workstation' in group_names"
- role: profile_server
when: "'server' in group_names"
- role: dotfiles
become: false