fixing and adding packages

This commit is contained in:
Matthew Stobbs
2025-01-18 16:00:26 -07:00
parent 333ee4c3f5
commit 985da518b4
114 changed files with 555 additions and 498 deletions

View File

@@ -1,7 +1,7 @@
---
- name: install rust and cargo
ansible.builtin.include_tasks:
file: "packages/{{ ansible_os_family }}/rust.yml"
file: "{{ ansible_os_family }}/rust.yml"
tags:
- rust
- dependency
@@ -18,8 +18,8 @@
- name: append to pkgs
set_fact:
syspkgs: "{{ (syspkgs | default([])) + alacritty_deps }}"
altpkgs: "{{ (altpkgs | default([])) + [ 'packages/Linux/alacritty.yml' ] }}"
syspkgs: "{{ syspkgs + alacritty_deps }}"
altpkgs: "{{ altpkgs + [ 'Linux/alacritty.yml' ] }}"
tags:
- syspkgs
- altpkgs