-
Notifications
You must be signed in to change notification settings - Fork 7
/
install.yml
32 lines (30 loc) · 924 Bytes
/
install.yml
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
---
- hosts: all
become: yes
vars:
user: user
shell: /usr/bin/fish
pre_tasks:
- name: Enable multilib
community.general.xbps:
name:
- void-repo-multilib
- void-repo-multilib-nonfree
roles:
- { role: base, tags: base }
- { role: kernel, tags: kernel }
- { role: desktop, tags: desktop }
- { role: flatpak, tags: flatpak }
- { role: appimage, tags: appimage }
- { role: temp, tags: temp }
- { role: runit, tags: runit }
- { role: power, tags: power }
- { role: themes-fonts, tags: themes-fonts }
- { role: virtualization, tags: virtualization }
- { role: ansible, tags: ansible }
- { role: containers, tags: containers }
- { role: zfs, tags: zfs }
- { role: zram, tags: zram }
- { role: acpi, tags: acpi }
- { role: bluetooth, tags: bluetooth }
- { role: network-simulation, tags: network-simulation }