This commit is contained in:
Ivan Golikov 2025-01-18 01:08:12 +01:00
parent cdcbc99283
commit 7142c9af63

View file

@ -60,6 +60,11 @@
packages: "{{ common_packages + pacman_packages }}"
when: is_arch
- name: Get full packages list (Ubuntu)
ansible.builtin.set_fact:
packages: "{{ common_packages + apt_packages }}"
when: is_ubuntu
- name: Install packages (macOS)
community.general.homebrew:
name: "{{ packages }}"