blob: 15328eec8b53c6ce758f5c9abf45f4fe2fd23545 (
plain) (
blame)
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
63
64
65
|
---
- name: "Archlinux configure"
gather_facts: true
hosts:
- archlinux.local
environment:
PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}"
roles:
- role: "locales"
- role: "timezone"
- role: "wireguard"
- role: "go"
- role: "python"
- role: "docker"
- role: "podman"
- role: "ansible"
- role: "rsync"
- role: "gpg"
- role: "dotfiles"
- role: "password_store"
- role: "vim"
- role: "neomutt"
- name: "Ubuntu configure"
gather_facts: true
hosts:
- ubuntu.local
environment:
PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}"
roles:
- role: "locales"
- role: "timezone"
- role: "wireguard"
- role: "go"
- role: "python"
- role: "docker"
- role: "podman"
- role: "ansible"
- role: "gnome"
- role: "rsync"
- role: "gpg"
- role: "dotfiles"
- role: "password_store"
- role: "vim"
- role: "neomutt"
- name: "Raspberry Pi configure"
gather_facts: true
hosts:
- rpi5.local
roles:
- role: "locales"
- role: "timezone"
- role: "wireguard"
- role: "gateway"
- role: "nginx"
- role: "wg_portal"
- role: "pihole"
- role: "prometheus"
- role: "grafana"
- role: "gpg"
- role: "dotfiles"
- role: "password_store"
- role: "vim"
- role: "neomutt"
|