forked from geerlingguy/mac-dev-playbook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.config.yml
111 lines (99 loc) · 2.81 KB
/
default.config.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
---
downloads: ~/.ansible-downloads/
# Override in config.yml if you want to use something else, e.g., vim
git_editor: code --wait
# Not working on 12.3, need this to merge: https://github.com/Homebrew/homebrew-core/pull/97394
# Set to 'true' in main.yml if you want dockutil re-arranging things on you.
configure_dock: false
dockitems_remove:
- Messages
- Mail
- Maps
- Photos
- FaceTime
- Calendar
- Contacts
- Reminders
- Notes
- TV
- Music
- Podcasts
- News
dockitems_persist:
- name: Visual Studio Code
path: /Applications/Visual Studio Code.app/
- name: Terminal
path: /Applications/Terminal.app/
- name: Insomnia
path: /Applications/Insomnia.app/
- name: Vysor
path: /Applications/Vysor.app/
- name: Android Studio
path: /Applications/Android Studio.app/
- name: Xcode
path: /Applications/Xcode.app/
configure_dotfiles: true
dotfiles_repo: https://github.com/ajyong/flutter-macos-dotfiles.git
dotfiles_repo_accept_hostkey: true
dotfiles_repo_local_destination: ~/code/flutter-macos-dotfiles
dotfiles_repo_version: main
dotfiles_files:
- android-packages.txt
- .gitconfig
- .ssh/config
- .vimrc
- .zprofile
- .zshrc
homebrew_installed_packages:
- azure-cli
- ffmpeg
- fvm
- git
- rbenv
homebrew_taps:
- homebrew/core
- homebrew/cask
- leoafarias/fvm
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
- android-studio
- docker # Cask version includes Docker Desktop
- insomnia
- visual-studio-code
- vysor
# See `geerlingguy.mas` role documentation for usage instructions.
# https://github.com/geerlingguy/ansible-collection-mac/tree/master/roles/mas
mas_installed_apps: [] # Disabled because `mas signin` doesn't work in 12.3
# - { id: 497799835, name: 'Xcode' }
mas_email: ''
mas_password: ''
configure_sudoers: false
sudoers_custom_config: ''
# Example:
# sudoers_custom_config: |
# # Allow users in admin group to use sudo with no password.
# %admin ALL=(ALL) NOPASSWD: ALL
configure_terminal: false
configure_osx: false
osx_script: '~/.osx --no-restart'
# Install packages from other package managers.
# Note: You are responsible for making sure the required package managers are
# installed, eg. through homebrew.
composer_packages: []
# - name: drush
# state: present # present/absent, default: present
# version: "^8.1" # default: N/A
gem_packages: []
# - name: bundler
# state: present # present/absent/latest, default: present
# version: "~> 1.15.1" # default: N/A
npm_packages: []
# - name: webpack
# state: present # present/absent/latest, default: present
# version: "^2.6" # default: N/A
pip_packages: []
# - name: mkdocs
# state: present # present/absent/latest, default: present
# version: "0.16.3" # default: N/A
# Glob pattern to ansible task files to run after all other tasks are finished.
post_provision_tasks: []