-
Notifications
You must be signed in to change notification settings - Fork 7
/
dotfiles.yml
57 lines (41 loc) · 1.21 KB
/
dotfiles.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
- hosts: all
environment:
PATH: "{{ ansible_env.PATH }}:{{ ansible_env.HOME }}/.cargo/bin"
tasks:
- import_role: name=homebrew
tags: [homebrew, cli]
- import_role: name=mas
tags: [mas, gui]
- import_role: name=meta_pacman
tags: [pacman, cli]
- import_role: name=rust
tags: [rust, cli]
- import_role: name=aur
tags: [aur, cli]
- import_role: name=zsh
tags: [zsh, cli]
- import_role: name=tmux
tags: [tmux, cli]
- import_role: name=dotfiles
tags: [dotfiles, cli]
- import_role: name=python
tags: [python, cli]
when: ansible_facts["os_family"] == "Archlinux"
- import_role: name=yarn
tags: [yarn, cli]
- import_role: name=nvim
tags: [nvim, cli]
- import_role: name=docker
tags: [docker, cli]
when: ansible_facts["os_family"] == "Archlinux"
- import_role: name=gui_apps
tags: [gui]
when: ansible_facts["os_family"] == "Archlinux"
- import_role: name=1password
tags: [1password, gui]
when: ansible_facts["os_family"] == "Archlinux"
- import_role: name=cron
tags: [cron]
# - import_role: name=wallpapers
# tags: [wallpapers, gui]