dotfiles/.ansible/roles/desktop/tasks/main.yaml

16 lines
385 B
YAML
Raw Normal View History

2019-01-20 17:09:09 +00:00
- name: Linux desktop tasks
block:
2019-01-20 17:59:11 +00:00
- import_tasks: linux/software.yaml
- import_tasks: linux/config.yaml
2019-01-20 17:09:09 +00:00
when: ansible_system == 'Linux'
- name: OS X desktop tasks
block:
2019-01-20 17:59:11 +00:00
- import_tasks: darwin/homebrew.yaml
- import_tasks: darwin/mas.yaml
- import_tasks: darwin/prefs.yaml
2019-01-20 17:09:09 +00:00
when: ansible_system == 'Darwin'
2019-01-20 17:59:11 +00:00
- name: Common desktop tasks
import_tasks: firefox.yaml