forked from adamchainz/mac-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaybook.yml
executable file
·65 lines (57 loc) · 1.23 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
#!/usr/bin/env ansible-playbook
- hosts: localhost
vars:
source_key: "./.ssh/id_rsa"
dest_key: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa"
homebrew_packages:
- asdf
- eza # ls replacement
- ffmpeg
- flyctl
- fzf
- git
- git-lfs
- jq
- kubectx
- ncspot
- neovim
- overmind
- python
- rg
- starship
- stow
- tmux
- tmuxinator
- tree
- zoxide # cd replacement
- imagemagick
- hashicorp/tap/terraform
- yt-dlp
homebrew_cask_packages:
# - 1password
- alacritty
- anki
- calibre
- docker
- dropbox
- raycast
- firefox
- homebrew/cask-fonts/font-daddy-time-mono-nerd-font
- homebrew/cask-fonts/font-inconsolata-nerd-font
- homebrew/cask-fonts/font-iosevka-nerd-font
- obsidian
- vlc
node_versions:
- 18.9.1
pyenv_python_versions:
- 3.10.7
tasks:
- import_tasks: tasks/ssh.yml
- import_tasks: tasks/zsh.yml
- import_tasks: tasks/homebrew.yml
- import_tasks: tasks/nvim.yml
- import_tasks: tasks/node.yml
# - import_tasks: tasks/python.yml
- import_tasks: tasks/personal-projects.yml
- import_tasks: tasks/dotfiles.yml
- import_tasks: tasks/cron.yml