diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-02-25 23:29:55 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-02-25 23:29:55 +0100 |
| commit | 407d1840734592d36c4aaf4ec189f6c1d3ed08e4 (patch) | |
| tree | 7fab3bad6a8192b44a7518e9bd23c9dc2c1516f5 /configure.yml | |
| parent | a79459516f210f38cf3281ffe8887f27afaa84d2 (diff) | |
Add mac-archlinux host configurations
Diffstat (limited to 'configure.yml')
| -rw-r--r-- | configure.yml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/configure.yml b/configure.yml index 11039705..1c5592fb 100644 --- a/configure.yml +++ b/configure.yml @@ -3,6 +3,7 @@ gather_facts: true hosts: - archlinux.local + - mac-archlinux.local roles: - role: "locales" - role: "timezone" @@ -43,7 +44,6 @@ - role: "chromium" - role: "obsidian" - role: "microsoft-teams" - - role: "nvidia_gtx1060" - role: "steam" - role: "hyprland" post_tasks: @@ -55,6 +55,21 @@ changed_when: true when: reboot_required | default(false) +- name: "nvidia configure" + gather_facts: true + hosts: + - archlinux.local + roles: + - role: "nvidia_gtx1060" + post_tasks: + - name: "Reboot if required" + become: true + ansible.builtin.command: "shutdown -r now" + async: 1 + poll: 0 + changed_when: true + when: reboot_required | default(false) + - name: "Ubuntu configure" gather_facts: true hosts: |
