diff --git a/roles/powershell/tasks/main.yaml b/roles/powershell/tasks/main.yaml new file mode 100644 index 0000000..c65f1f1 --- /dev/null +++ b/roles/powershell/tasks/main.yaml @@ -0,0 +1,16 @@ +--- +- name: clone config repos + win_git: + repo: git@code.infektor.net:config/WindowsPowerShell.git + dest: '{{ansible_env.USERPROFILE}}/Documents/WindowsPowerShell' + branch: master + +- name: install chocolatey package + win_chocolatey: + name: Cmder + state: latest + +- name: install PsReadline module + win_psmodule: + name: PsReadline + state: latest diff --git a/windows.yaml b/windows.yaml index 3fb21ac..3a6f7bd 100644 --- a/windows.yaml +++ b/windows.yaml @@ -12,6 +12,7 @@ - hosts: windows roles: + - role: powershell - role: neovim - role: git - role: python