diff --git a/playbooks/Linux.yaml b/playbooks/Linux.yaml index 0885572..fb15c59 100644 --- a/playbooks/Linux.yaml +++ b/playbooks/Linux.yaml @@ -3,6 +3,7 @@ - import_playbook: UnixGUI.yaml - hosts: localhost roles: + - role: cider - role: kitty - role: xremap when: > diff --git a/playbooks/Windows.yaml b/playbooks/Windows.yaml index c76ae5f..13ae26d 100644 --- a/playbooks/Windows.yaml +++ b/playbooks/Windows.yaml @@ -23,6 +23,7 @@ - role: 1password - role: autohotkey + - role: cider - role: ferdium - role: firefox - role: fonts diff --git a/roles/cider/tasks/main.yaml b/roles/cider/tasks/main.yaml new file mode 100644 index 0000000..8ce4599 --- /dev/null +++ b/roles/cider/tasks/main.yaml @@ -0,0 +1,13 @@ +--- +- name: install chocolatey package + when: ansible_os_family == 'Windows' + win_chocolatey: + state: latest + name: Cider + +- name: install flatpak package + when: ansible_os_family != 'Windows' and + ansible_os_family != 'Darwin' + become: true + flatpak: + name: sh.cider.Cider