more packages fixed

- removed nushell. Not using it, not going to use again anytime soon
This commit is contained in:
Matthew Stobbs
2025-02-20 12:22:50 -07:00
parent 48e67be99b
commit c0400949c3
34 changed files with 132 additions and 206 deletions

View File

@@ -1,21 +1,14 @@
# vim: set filetype=yaml.ansible :
---
- ansible.builtin.include_vars:
file: neovide.yml
name: _neovide
- ansible.builtin.set_fact:
pkgconfig_neovide: "{{ _neovide | ansible.builtin.combine(pkgconfig.neovide) }}"
- ansible.builtin.include_tasks:
file: pkgs/rust.yml
when: pkgconfig_rust is undefined
- name: append to pkgs
- name: Append to pkgs
when:
- ansible_system == 'Linux'
ansible.builtin.set_fact:
syspkgs: "{{ syspkgs + pkgconfig_neovide.deps[ansible_os_family] }}"
srcpkgs: "{{ srcpkgs + [ 'neovide' ] }}"
when: ansible_system == 'Linux'
pkg_sys: "{{ pkg_sys + neovide.deps }}"
pkg_cargo: "{{ pkg_cargo + [neovide] }}"
- name: append neovide to caskpkgs
- name: Append neovide to caskpkgs
when:
- ansible_system == 'Darwin'
ansible.builtin.set_fact:
caskpkgs: "{{ caskpkgs + [ 'neovide' ] }}"
when: ansible_system == 'Darwin'
pkg_cask: "{{ pkg_cask + ['neovide'] }}"