-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
154 lines (147 loc) · 3.68 KB
/
mkdocs.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
---
site_name: Notes
site_description: My notes on various things
site_author: Nicholas Wilde
site_url: https://nicholaswilde.io/notes
copyright: Copyright © 2024 Nicholas Wilde
dev_addr: '0.0.0.0:8000'
# Repository
repo_name: nicholaswilde/notes
repo_url: https://github.com/nicholaswilde/notes
edit_uri: "edit/main/docs/"
# Page tree
nav:
- Home: index.md
- Ansible: ansible.md
- Apps: apps.md
- Arch: arch.md
- Bash: bash.md
- Bitwarden: bitwarden.md
- Chrome OS: chromeos.md
- Deprecation: deprecation.md
- Docker: docker.md
- ESPHome: esphome.md
- Flux: flux.md
- Git: git.md
- Github Actions: github-actions.md
- Go: go.md
- GPG: gpg.md
- Helm: helm.md
- Home Assistant: home-assistant.md
- Homelab: homelab.md
- Images: images.md
- Kind: kind.md
- Kubernetes: kubernetes.md
- LastPass: lastpass.md
- Make: make.md
- Markdown: markdown.md
- Micro: micro.md
- Misc: misc.md
- Multipass: multipass.md
- NFS: nfs.md
- NPM: npm.md
- Proxmox: proxmox.md
- Python: python.md
- Regex: regex.md
- RPi: rpi.md
- Signal: signal.md
- Specifications: specifications.md
- SSH: ssh.md
- Task: task.md
- Ubuntu: ubuntu.md
- Windows 11: w11.md
- yq: yq.md
- Yubikey: yubikey.md
- Archive:
- Bitwarden: bitwarden.md
- Chezmoi: chezmoi.md
- pass: pass.md
extra:
social:
- icon: fontawesome/solid/house
link: https://nicholaswilde.io/
- icon: fontawesome/brands/github
link: https://github.com/nicholaswilde
- icon: fontawesome/brands/twitter
link: https://twitter.com/nicholascwilde
- icon: fontawesome/brands/instagram
link: https://www.instagram.com/wildewoodworking/
- icon: fontawesome/brands/linkedin-in
link: https://www.linkedin.com/in/nicholaswilde
- icon: fontawesome/brands/facebook
link: https://www.facebook.com/nicholas.wilde/
- icon: fontawesome/brands/keybase
link: https://keybase.io/nicholaswilde
- icon: fontawesome/solid/key
link: https://github.com/nicholaswilde.gpg
theme:
name: material
language: en
icon:
repo: fontawesome/brands/github
features:
- navigation.top
- navigation.tracking
- navigation.footer
- content.code.copy
- content.action.edit
- content.action.view
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
plugins:
- search
- tags
- minify:
minify_html: true
# Extensions
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: nicholaswilde
repo: notes
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde