Files
ansible_role_package/tasks/pkgs/starship.yml
2025-02-09 18:24:38 -07:00

11 lines
269 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: install rust and cargo
ansible.builtin.include_tasks:
file: "pkgs/rust.yml"
when: pkgconfig_rust is undefined
- name: add to cargopkgs
ansible.builtin.set_fact:
cargopkgs: "{{ cargopkgs + [ 'starship' ] }}"