diff --git a/Windows.yaml b/Windows.yaml index 4d3678e..cf8d811 100644 --- a/Windows.yaml +++ b/Windows.yaml @@ -23,4 +23,5 @@ - role: autohotkey - role: firefox - role: obsidian + - role: powertoys - role: windows-terminal diff --git a/roles/powertoys/tasks/main.yaml b/roles/powertoys/tasks/main.yaml new file mode 100644 index 0000000..e4ea4c1 --- /dev/null +++ b/roles/powertoys/tasks/main.yaml @@ -0,0 +1,8 @@ +--- +- assert: + that: ansible_os_family == 'Windows' + +- name: install chocolatey package + win_chocolatey: + name: powertoys + state: present