1
0
Fork 0

bunch of stuff

This commit is contained in:
cătălin 2023-10-07 14:46:31 +02:00
commit 66b7a0ee5f
Signed by: catalin
GPG key ID: 0178DF42F43E5FD2
16 changed files with 239 additions and 111 deletions

View file

@ -0,0 +1,30 @@
- name: Install os-agnostic packages
become: yes
ansible.builtin.package:
name:
- git
- tmux
- python3-pip
- fish
- rofi
- automake
- libtool
state: present
- name: Install Debian packages
become: yes
when: ansible_os_family == "Debian"
import_tasks: debian.yml
- name: Install RHEL packages
become: yes
when: ansible_os_family in ["RedHat", "Nobara"]
import_tasks: rhel.yaml
- name: Install Rust packages
import_tasks: rust.yml
- name: Install Python packages
import_tasks: python.yml
#