-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.yaml
42 lines (39 loc) · 911 Bytes
/
packages.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
- hosts: localhost
gather_facts: false
tasks:
- name: Install all of my packages through pacman
ansible.builtin.pacman:
name:
- vim
- curl
- wget
- feh
- firefox
- rsync
- git
- mako
- cmus
- ranger
- unzip
- network-manager-applet
- sddm
- gnome-keyring
- papirus-icon-theme
- nautilus
- hyprland
- foot
- rofi
- breeze
- swaybg
- swayidle
- swaylock
- zsh
- pavucontrol
- apparmor
- cifs-utils
- waybar
state: present
- name: Enable sddm on boot
ansible.builtin.command: systemctl enable sddm
- name: Enable apparmor on boot
ansible.builtin.command: systemctl enable apparmor