Add user and packages

This commit is contained in:
Ariejan de Vroom 2024-06-06 21:54:13 +02:00
parent 315c5d0da3
commit 31c18d33d9
Signed by: ariejan
GPG Key ID: AD739154F713697B
4 changed files with 25 additions and 1 deletions

View File

@ -14,5 +14,21 @@ pacman:
aur_helper: yay
# Packages, installed from Arch repositories with pacman
packages:
- curl
- fzf
- htop
- linux-firmware
- man
- man-db
- man-pages
- networkmanager
- rsync
- screen
- tree
- unzip
- wget
- zip
- zsh
- sudo

View File

@ -3,4 +3,6 @@
hosts: all
roles:
- { role: 01_host_info }
- { role: 02_basics }
- { role: 02_basics }
- { role: 03_packages }
- { role: 04_user }

View File

@ -0,0 +1,6 @@
---
- name: Install Arch packages
ansible.builtin.pacman:
name: "{{ packages }}"
state: present
become: true