--- - hosts: localhost become: true tasks: - import_tasks: tasks/base.yml - import_tasks: tasks/electronics.yml tags: electronics - hosts: localhost become: false tasks: - import_tasks: tasks/aur.yml tags: aur - hosts: localhost become: true become_user: "{{ default_user }}" vars: user_home: "/home/{{ default_user }}" tasks: - import_tasks: tasks/desktop.yml - import_tasks: tasks/firefox.yml - import_tasks: tasks/shell_env.yml - import_tasks: tasks/vim.yml