We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee4db9 commit cb43093Copy full SHA for cb43093
ansible_osx.yml
@@ -34,6 +34,7 @@
34
- orbstack
35
- notion
36
- notion-calendar
37
+ - font-jetbrains-mono
38
39
- name: "Install homebrew packages"
40
community.general.homebrew:
@@ -80,7 +81,6 @@
80
81
become: true
82
changed_when: true
83
shell: sudo xcodebuild -license accept
-
84
85
- name: Get the path to ZSH
86
become: false
@@ -167,6 +167,15 @@
167
creates: "{{ ansible_env.HOME }}/.nvm/versions/{{ item }}"
168
loop:
169
- 22
170
+ - name: Make node LTS the default
171
+ become: no
172
+ shell: >
173
+ . {{ ansible_env.HOME }}/.nvm/nvm.sh && nvm use {{ item }} && nvm alias default {{ item }}
174
+ args:
175
+ executable: /bin/bash
176
+ chdir: "{{ ansible_env.HOME }}"
177
+ loop:
178
+ - 22
179
180
- name: "Install Default Ruby"
181
shell: |
0 commit comments