-
Notifications
You must be signed in to change notification settings - Fork 132
/
admin.yml
157 lines (153 loc) · 4.43 KB
/
admin.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
---
- hosts: 127.0.0.1
connection: local
tasks:
- name: install personal cask applications
homebrew_cask: name={{item}} state=present
with_items:
- spotify
- sketch
- imageoptim
- imagealpha
- sketch-toolbox
- littleipsum1
- name: create ssh directory
become: yes
file:
path: "{{item}}"
state: directory
owner: root
group: wheel
mode: 0777
with_items:
- /etc/ssh
- name: personal ssh config
become: yes
copy:
src: files/ssh_config
dest: /etc/ssh_config
- name: add to sudoers without password
become: yes
lineinfile: >
dest=/etc/sudoers
regexp="{{ item.regexp }}"
line="{{ item.line }}"
state=present
create=true
with_items:
- { regexp: '^admin', line: 'admin ALL=(ALL) NOPASSWD: ALL' }
roles:
- profile-all
- profile-developer
vars:
- computername: frontend
- git_user_name: Kunstmaan Admin (FE Laptop)
- git_user_email: [email protected]
- sublime_packages:
- dest: "SideBarEnhancements"
repo: "https://github.com/titoBouzout/SideBarEnhancements"
version: "st3"
- dest: "GitGutter"
repo: "https://github.com/jisaacks/GitGutter.git"
version: "master"
- dest: "BracketHighlighter"
repo: "https://github.com/facelessuser/BracketHighlighter.git"
version: "master"
- dest: "Theme - Soda"
repo: "https://github.com/buymeasoda/soda-theme.git"
version: "master"
- dest: "Base16"
repo: "https://github.com/chriskempson/base16-textmate.git"
version: "master"
- dest: "ApplySyntax"
repo: "https://github.com/facelessuser/ApplySyntax.git"
version: "master"
- dest: "SublimeAllAutocomplete"
repo: "https://github.com/alienhard/SublimeAllAutocomplete"
version: "master"
- dest: "Ansible"
repo: "https://github.com/clifford-github/sublime-ansible.git"
version: "master"
- sublime_text_color_scheme: "Packages/Base16/base16-eighties.dark.tmTheme"
- sublime_text_theme: "Soda Dark 3.sublime-theme"
- osx_defaults:
- domain: 'com.apple.dock'
key: 'autohide'
type: boolean
value: true
- domain: 'com.apple.dock'
key: 'minimize-to-application'
type: integer
value: 1
- domain: 'com.apple.dock'
key: 'show-process-indicators'
type: boolean
value: true
- domain: 'com.apple.dock'
key: 'orientation'
type: string
value: left
- domain: 'NSGlobalDomain'
key: 'NSTableViewDefaultSizeMode'
type: integer
value: 1
- domain: 'com.apple.screencapture'
key: 'type'
type: string
value: png
- domain: 'NSGlobalDomain'
key: 'KeyRepeat'
type: integer
value: 2
- domain: 'NSGlobalDomain'
key: 'InitialKeyRepeat'
type: integer
value: 15
- domain: 'com.apple.menuextra.clock'
key: 'DateFormat'
type: string
value: EEE MMM d HH:mm
- domain: 'com.apple.menuextra.battery'
key: 'ShowPercent'
type: string
value: 'YES'
- domain: 'com.apple.finder'
key: 'FXPreferredViewStyle'
type: string
value: "clmv"
- domain: 'NSGlobalDomain'
key: 'NSNavPanelExpandedStateForSaveMode'
type: boolean
value: true
- domain: 'NSGlobalDomain'
key: 'PMPrintingExpandedStateForPrint'
type: boolean
value: true
- domain: 'com.apple.dock'
key: 'tilesize'
type: float
value: 32
- domain: 'com.apple.dock'
key: 'autohide-time-modifier'
type: int
value: 0
- domain: 'com.apple.dock'
key: 'autohide-delay'
type: int
value: 0
- domain: 'NSGlobalDomain'
key: 'NSQuitAlwaysKeepsWindows'
type: boolean
value: false
- domain: 'NSGlobalDomain'
key: 'ApplePressAndHoldEnabled'
type: boolean
value: false
- domain: 'com.apple.desktopservices'
key: 'DSDontWriteNetworkStores'
type: boolean
value: true
- domain: 'com.apple.print.PrintingPrefs'
key: 'Quit When Finished'
type: boolean
value: true