diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-21 23:40:03 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-21 23:40:03 +0200 |
| commit | 0edddc560a02b85e637395744e5af9b8e46cdc47 (patch) | |
| tree | ff10ebe027a5270a7ba3b082ca44f375ef4a9093 | |
| parent | e4af5cdb20fed9211e4b1a7c99b8ca5998259bcf (diff) | |
Separate archlinux/ubuntu setup and add gnome to ubuntu
| -rw-r--r-- | configure.yml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/configure.yml b/configure.yml index 960cb0e9..36c3ac58 100644 --- a/configure.yml +++ b/configure.yml @@ -1,8 +1,22 @@ --- -- name: "Dev machines configure" +- name: "Archlinux configure" gather_facts: true hosts: - archlinux.local + roles: + - role: "locales" + - role: "timezone" + - role: "wireguard" + - role: "homebrew" + - role: "python" + - role: "go" + - role: "docker" + - role: "podman" + - role: "ansible" + +- name: "Ubuntu configure" + gather_facts: true + hosts: - ubuntu.local roles: - role: "locales" @@ -14,6 +28,7 @@ - role: "docker" - role: "podman" - role: "ansible" + - role: "gnome" - name: "Raspberry Pi configure" gather_facts: true |
