add multiple packages

- stub only: dbeaver, gns3, godot, heroic
- partial:
  - Darwin: httpiegui, jellyfin, libreoffic, pgadmin, tailscale
- full: thunderbird, zfs, zsh
This commit is contained in:
Matthew Stobbs
2025-02-07 11:41:14 -07:00
parent d0adf18378
commit 67a9b39abc
14 changed files with 169 additions and 52 deletions

10
tasks/pkgs/blender.yml Normal file
View File

@@ -0,0 +1,10 @@
---
- name: append to pkgs
ansible.builtin.set_fact:
syspkgs: "{{ syspkgs + [ 'blender' ] }}"
when: ansible_os_family != 'Darwin'
- name: append to caskpkgs
ansible.builtin.set_fact:
caskpkgs: "{{ caskpkgs + [ 'blender' ] }}"
when: ansible_os_family == 'Darwin'