Add Windows support to fonts role

This commit is contained in:
Kenneth Benzie 2023-07-29 11:33:20 +01:00
parent 47d9c4c7e7
commit e625f463d7
3 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,7 @@
- role: autohotkey
- role: ferdium
- role: firefox
- role: fonts
- role: obsidian
- role: powertoys
- role: windows-terminal

View File

@ -0,0 +1,5 @@
---
- name: install chocolatey package
win_chocolatey:
name: nerd-fonts-CascadiaCode
state: latest

View File

@ -1,5 +1,7 @@
---
- when: ansible_os_family == 'Darwin'
include_tasks: 'Darwin.yaml'
- when: ansible_os_family == 'Windows'
include_tasks: 'Windows.yaml'
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
include_tasks: 'Linux.yaml'