forked from cachix/devenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
114 lines (112 loc) · 3.12 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
site_name: devenv
site_description: 'Fast, Declarative, Reproducible, and Composable Developer Environments using Nix'
site_url: 'https://devenv.sh'
repo_name: 'cachix/devenv'
repo_url: 'https://github.com/cachix/devenv'
edit_uri: 'edit/main/docs'
extra_css:
- assets/output.css
theme:
name: material
logo: assets/logo.webp
favicon: assets/favicon.svg
icon:
repo: fontawesome/brands/github
custom_dir: docs/overrides
palette:
primary: white
accent: '#FBFBFB'
features:
- tabs
- instant
- search.share
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.instant
- navigation.tracking
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.action.edit
nav:
- Home: index.md
- Documentation:
- Getting Started: getting-started.md
- Files And Variables: files-and-variables.md
- Writing devenv.nix:
- Basics: basics.md
- Packages: packages.md
- Scripts: scripts.md
- Languages: languages.md
- Processes: processes.md
- Services: services.md
- Containers: containers.md
- Binary Caching: binary-caching.md
- Pre-Commit Hooks: pre-commit-hooks.md
- Tests: tests.md
- Common Patterns: common-patterns.md
- Writing devenv.yaml:
- Inputs: inputs.md
- Imports: composing-using-imports.md
- Overview:
- Automatic Shell Activation: automatic-shell-activation.md
- Garbage Collection: garbage-collection.md
- Guides:
- Using With Flakes: guides/using-with-flakes.md
- Using With flake.parts: guides/using-with-flake-parts.md
- Integrations:
- .env: integrations/dotenv.md
- GitHub Actions: integrations/github-actions.md
- Codespaces / devcontainer: integrations/codespaces-devcontainer.md
- Difftastic: integrations/difftastic.md
- Android: integrations/android.md
- Examples: examples.md
- Editor Support:
- VSCode: editor-support/vscode.md
- PhpStorm: editor-support/phpstorm.md
- Roadmap: roadmap.md
- Reference:
- devenv.yaml: reference/yaml-options.md
- devenv.nix: reference/options.md
- Blog:
- blog/index.md
- Community:
- Get Involved: community/get-involved.md
- Contributing: community/contributing.md
plugins:
blog: {}
search: {}
markdownextradata: {}
include-markdown: {}
social:
cards_layout_options:
background_color: "#FBFBFB"
color: "#425C82"
rss:
use_git: false
match_path: blog/posts/.*
date_from_meta:
as_creation: date
as_update: date
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/cachix_org
- icon: fontawesome/brands/github
link: https://github.com/cachix/devenv
- icon: fontawesome/brands/discord
link: https://discord.gg/naMgvexb6q
markdown_extensions:
- tables
- admonition
- pymdownx.escapeall
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- pymdownx.tilde