dotfiles/roles/editor_helix/tasks/install_Ubuntu.yml
Matej Focko a11b009120
chore: rename ‹editor› group of roles
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-12-12 16:08:45 +01:00

12 lines
246 B
YAML

---
- name: Enable the PPA for Helix
ansible.builtin.apt_repository:
repo: ppa:maveonair/helix-editor
state: present
become: true
- name: Install the Helix
ansible.builtin.package:
name: helix
state: present
become: true