added base pkgs

This commit is contained in:
Beth Parker 2024-10-08 00:09:52 -05:00
parent 80a23c8ee6
commit afa797a55f
2 changed files with 10 additions and 0 deletions

View file

@ -6,3 +6,4 @@
- include_tasks: pacman.yml
when: ansible_facts['distribution'] == "Archlinux"
- include_tasks: directories.yml

9
tasks/packages.yml Normal file
View file

@ -0,0 +1,9 @@
- name: install core packages
ansible.builtin.package:
name: "{{ item }}"
state: present
with_items:
- nano
- vim
- vi
- net-tools