-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.yml
62 lines (62 loc) · 1.23 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
- hosts: localhost
pre_tasks:
- name: Update pacman cache
become: true
pacman:
update_cache: yes
tags:
- general
- ssh
- fish
- hypr
- laptop
- desktop
- laptop_only
- desktop_only
tasks:
- include_tasks: ansible-tasks/general.yml
tags:
- general
- desktop
- laptop
#- include_tasks: ansible-tasks/gitconfig.yml
- include_tasks: ansible-tasks/ssh.yml
tags:
- ssh
- desktop
- laptop
- include_tasks: ansible-tasks/fish.yml
tags:
- fish
- desktop
- laptop
- include_tasks: ansible-tasks/hypr.yml
tags:
- hypr
- desktop
- laptop
- include_tasks: ansible-tasks/laptop.yml
tags:
- laptop
- laptop_only
- include_tasks: ansible-tasks/desktop.yml
tags:
- desktop
- desktop_only
- include_tasks: ansible-tasks/aur_builder.yml
tags:
- aur_builder
- yay
- yayapps
- desktop
- laptop
- include_tasks: ansible-tasks/yay.yml
tags:
- yay
- desktop
- laptop
- include_tasks: ansible-tasks/yayapps.yml
tags:
- yayapps
- desktop
- laptop