fix: sidebar for English version

This commit is contained in:
Ryan Yin 2023-06-27 18:12:22 +08:00
parent 5d0a512393
commit 49717577e2
2 changed files with 27 additions and 1 deletions

View File

@ -130,6 +130,32 @@ export default defineConfig({
},
],
},
{
text: "Dev Environemnts on NixOS",
items: [
{ text: "intro", link: "/development/intro.md" },
{
text: "Dev Environments",
link: "/development/dev-environments.md",
},
{
text: "Packaging 101",
link: "/development/packaging-101.md",
},
{
text: "Cross-platform Compilation",
link: "/development/cross-platform-compilation.md",
},
{
text: "Distribution Building",
link: "/development/distributed-building.md",
},
{
text: "Kernel Development",
link: "/development/kernel-development.md",
},
],
},
{
text: "Advanced Topics",
items: [

View File

@ -1,4 +1,4 @@
## Development on NixOS
## Dev Environemnts on NixOS
Due to the reproducibility of NixOS itself, it is very suitable for building development environments.
But if you want to migrate the experience on other distros directly to NixOS, you may encounter problems, because NixOS has its own set of logic, we will explain this briefly below.