feat(role): add notion-app

Install Notion via https://github.com/notion-enhancer/notion-repackaged.
This commit is contained in:
Oliver Davies 2022-04-07 17:37:40 +01:00
parent 906b1d0c99
commit 8f9c3a9b53
2 changed files with 13 additions and 0 deletions

View file

@ -15,6 +15,7 @@
- role: jq
- role: neovim
- role: neovim-lsp
- role: notion-app
- role: npm
- role: platformsh-cli
- role: pv

View file

@ -0,0 +1,12 @@
---
- name: Repository
ansible.builtin.apt_repository:
repo: "deb [trusted=yes] https://apt.fury.io/notion-repackaged/ /"
become: true
- name: Install
ansible.builtin.package:
name:
- notion-app
state: latest
become: true