forked from iancleary/ubuntu-dev-playbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playbook.yml
84 lines (78 loc) · 2.28 KB
/
playbook.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
- name: Initialize Machine (either Host or VM)
hosts: localhost
connection: local
tags:
- init
roles:
- {role: zsh, tags: ['zsh']}
- {role: zsh_fonts, tags: ['fonts']}
- {role: docker, tags: ['docker']}
# - {role: python, tags: ['python']}
- {role: yarn, tags: ['nodejs', 'yarn']}
- {role: code, tags: ['code']}
- {role: terraform, tags: ['terraform']}
- {role: github-cli, tags: ['github-cli']}
- {role: app-image, tags: ['app-image']}
- {role: profile-sync-daemon, tags: ['profile-sync-daemon']}
- {role: gnome-sushi, tags: ['gnome-sushi']}
- {role: ulauncher, tags: ['ulauncher']}
- {role: authy, tags: ['authy']}
- name: Install Fonts
hosts: localhost
connection: local
tags:
- fonts
roles:
- {role: zsh_fonts, tags: ['fonts']}
- name: Dotfiles
hosts: localhost
connection: local
tags:
- dotfiles
roles:
- {role: yadm, tags: ['yadm']}
- name: GNOME Customizations
hosts: localhost
connection: local
tags:
- gnome
roles:
- {role: gnome-dash-to-dock, tags: ['gnome-dash-to-dock']}
- {role: gnome-extensions, tags: ['gnome-extensions']}
- {role: gnome-keybindings, tags: ['gnome-keybindings']}
- {role: gnome-preferences, tags: ['gnome-preferences']}
- name: Roles for Hyper-V
hosts: localhost
connection: local
tags:
- hyper-v
roles:
- {role: hyper-v, tags: ['hyper-v']}
- name: Roles for Host OS (not Virtual Machine)
hosts: localhost
connection: local
tags:
- host
roles:
- {role: pulseaudio, tags: ['pulseaudio']}
- {role: nordvpn, tags: ['nordvpn'],
when: "ansible_hostname in ['xps', 'desktop', 'runner']"
}
- {role: stacer, tags: ['stacer']}
# Installed Evolution and LibreOffice with Flatpak
- {role: wifi-analyzer, tags: ['wifi-analyzer']}
- {role: caffeine, tags: ['caffeine']}
- {role: timeshift, tags: ['timeshift']}
- name: Remaining Roles
hosts: localhost
connection: local
tags:
- remainders
roles:
- {role: nautilus-mounts, tags: ['nautilus-mounts']}
- {role: common-snaps, tags: ['common-snaps']}
- {role: chat-clients, tags: ['chat-clients']}
- {role: web-browsers, tags: ['web-browsers']}
- {role: development-tools, tags: ['development-tools']}
- {role: hyper, tags: ['hyper']}