-
Notifications
You must be signed in to change notification settings - Fork 0
/
playbook.yml
73 lines (60 loc) · 1.46 KB
/
playbook.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
63
64
65
66
67
68
69
70
71
72
---
# ╔═════════════════════════════════╗
# ║ Intended to run on Ubuntu 24.04 ║
# ╚═════════════════════════════════╝
- name: Dotfiles
hosts: localhost
connection: local
vars_files:
- ./vars/default.yml
pre_tasks:
- name: Ensure /usr/local/bin exists
file:
dest: /usr/local/bin
state: directory
mode: 0755
tasks:
- import_tasks: ./tasks/system.yml
tags:
- system
- import_tasks: ./tasks/apt.yml
tags:
- apt
- import_tasks: ./tasks/stow.yml
tags:
- always
- import_tasks: ./tasks/dwm.yml
tags:
- dwm
- desktop
- import_tasks: ./tasks/st.yml
tags:
- st
- desktop
- import_tasks: ./tasks/dmenu.yml
tags:
- dmenu
- desktop
- import_tasks: ./tasks/luastatus.yml
tags:
- luastatus
- desktop
- import_tasks: ./tasks/slock.yml
tags:
- slock
- desktop
- import_tasks: ./tasks/brew.yml
tags:
- brew
- import_role:
name: geerlingguy.docker
become: true
tags:
- docker
vars:
docker_daemon_options:
bip: "172.20.0.1/24"
data-root: "/docker"
default-address-pools:
- base: 172.20.0.0/16
size: 24