diff options
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: |
