linux-config/roles/alacritty_user/tasks/main.yml

14 lines
314 B
YAML
Raw Normal View History

2021-10-22 11:45:20 +00:00
- name: Install Alacritty
become: true
package:
name: alacritty
state: present
2021-10-22 11:45:20 +00:00
- name: Linking up alacritty config folder
file:
src: "{{ playbook_dir }}/files/dotfiles/alacritty"
dest: ~/.config/alacritty
state: link
owner: "{{ ansible_user_id }}"
group: "{{ ansible_user_id }}"