-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
71 lines (60 loc) · 1.6 KB
/
mkdocs.yml
File metadata and controls
71 lines (60 loc) · 1.6 KB
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
---
site_name: Nix Toolbox
site_url: https://thrix.github.io/nix-toolbox
site_description: Fedora toolbox blended with Nix and Home Manager.
# Set here explicitly as in CI preview we turn it off
# https://www.mkdocs.org/user-guide/configuration/#use_directory_urls
use_directory_urls: true
# Repository
repo_url: https://github.com/thrix/nix-toolbox
edit_uri: blob/main/docs
# Theme configuration
theme:
name: material
logo: assets/nix-toolbox.png
features:
- search.suggest
- search.highlight
- content.tabs.link
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue-grey
accent: light-blue
toggle:
icon: material/brightness-4
name: Switch to light mode
extra:
generator: false
social:
- icon: fontawesome/brands/discord
link: https://discord.com/channels/232740312194351106/625653468262039563
- icon: fontawesome/brands/github
link: https://github.com/thrix/nix-toolbox
# Navigation
nav:
- Home: index.md
- Getting Started: getting-started.md
- Architecture: architecture.md
- Issues: https://github.com/thrix/nix-toolbox/issues
- Examples: examples.md
- Uninstalling: uninstalling.md
- Contributors: contributors.md
# Extensions
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search