2017-12-16 22:45:14 +01:00
|
|
|
---
|
2020-05-13 21:20:33 +02:00
|
|
|
- hosts: desktop
|
2018-01-04 20:59:34 +01:00
|
|
|
tags: limit
|
2017-12-29 03:14:04 +01:00
|
|
|
tasks:
|
2020-01-01 00:10:25 +01:00
|
|
|
- name: Limit to Archlinux and NixOS
|
2017-12-23 22:18:11 +01:00
|
|
|
fail:
|
|
|
|
msg: "{{ ansible_distribution }} is not supported with this tag."
|
2020-01-01 00:10:25 +01:00
|
|
|
when: (ansible_distribution != "Archlinux") and
|
|
|
|
(ansible_distribution != "NixOS")
|
2017-12-29 03:06:47 +01:00
|
|
|
|
2018-01-04 20:59:34 +01:00
|
|
|
- name: Limit to user accounts
|
2017-12-29 03:06:47 +01:00
|
|
|
fail:
|
|
|
|
msg: "Don't run as root."
|
2017-12-29 03:08:32 +01:00
|
|
|
when: ansible_user_id == "root"
|
2017-12-23 22:18:11 +01:00
|
|
|
|
2020-05-07 17:44:57 +02:00
|
|
|
# Configure user cli
|
2020-05-13 21:20:33 +02:00
|
|
|
- hosts: cli
|
2017-12-29 03:14:04 +01:00
|
|
|
roles:
|
2019-12-01 16:29:03 +01:00
|
|
|
- { role: fish, tags: fish }
|
2020-05-07 17:44:57 +02:00
|
|
|
- { role: neovim, tags: neovim }
|
|
|
|
- { role: screen, tags: screen }
|
|
|
|
- { role: git, tags: git }
|
|
|
|
- { role: userbin, tags: userbin }
|
|
|
|
|
2020-05-13 21:20:33 +02:00
|
|
|
- hosts: desktop
|
2017-12-19 00:52:21 +01:00
|
|
|
roles:
|
2020-01-03 01:53:52 +01:00
|
|
|
- role: ssh-agent
|
|
|
|
tags: ssh-agent
|
|
|
|
when: ansible_distribution == "Archlinux"
|
2017-12-19 01:43:14 +01:00
|
|
|
- { role: gtk, tags: gtk }
|
2019-12-11 23:59:36 +01:00
|
|
|
- { role: sway, tags: sway }
|
2020-01-02 11:05:10 +01:00
|
|
|
- { role: waybar, tags: waybar }
|
2019-12-01 16:29:03 +01:00
|
|
|
- { role: variety, tags: variety }
|
2020-05-08 01:28:10 +02:00
|
|
|
- { role: wofi, tags: wofi }
|
2020-05-09 19:45:20 +02:00
|
|
|
- { role: kitty, tags: kitty }
|
2020-05-13 21:20:33 +02:00
|
|
|
|
2017-12-18 22:23:15 +01:00
|
|
|
tasks:
|
|
|
|
- include_role:
|
2017-12-19 18:44:15 +01:00
|
|
|
name: vagrant
|
2017-12-19 16:48:31 +01:00
|
|
|
when: ansible_user_id == "vagrant"
|
2017-12-19 18:44:15 +01:00
|
|
|
tags: vagrant
|