-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup-win.yml
64 lines (54 loc) · 1.26 KB
/
setup-win.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
- name: "Configure Windows host"
hosts: win
tasks:
- name: "Install basic utilities"
import_tasks: "./windows/util-packages.yml"
tags:
- basic
- name: "Install Development tools"
import_tasks: "./windows/dev-packages.yml"
tags:
- dev
- name: "Clean up context menu items"
import_tasks: "./windows/context-menu.yml"
tags:
- basic
- dev
- yubikey
- name: "Clean up desktop shortcuts"
import_tasks: "./windows/desktop-icons.yml"
tags:
- basic
- dev
- yubikey
- name: "Configure Yubikey passthrough to WSL"
import_tasks: "./windows/yubikey.yml"
tags:
- yubikey
- name: "Install age encryption"
import_tasks: "./windows/age.yml"
tags:
- yubikey
- age
- sops
- name: "Install Terraform"
import_tasks: "./windows/terraform.yml"
tags:
- terraform
- name: "Install SOPS"
import_tasks: "./windows/sops.yml"
tags:
- sops
- name: "Install Kubernetes tools"
import_tasks: "./windows/kubernetes.yml"
tags:
- kubernetes
- k8s
- name: "Set up Powerline shell dependencies"
import_tasks: "./windows/powerline-shell.yml"
tags:
- powerline
- name: "Configure git"
import_tasks: "./windows/git.yml"
tags:
- git