1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

Set the structure of the tutorials section

This commit is contained in:
Zach Mitchell 2023-05-06 14:06:30 -06:00
parent 6d89d43246
commit b573def109
17 changed files with 42 additions and 28 deletions

View file

@ -30,12 +30,16 @@ This documentation supplements the official [Nix](http://nixos.org/nix/manual/),
and [NixOps](http://nixos.org/nixops/manual/) manuals. and [NixOps](http://nixos.org/nixops/manual/) manuals.
```{toctree} ```{toctree}
:glob: true :glob:
:caption: Tutorials
:maxdepth: 1 :maxdepth: 1
:hidden:
tutorials/index.md tutorials/install-nix.md
templates/index.md tutorials/first-steps/index.md
anti-patterns/index.md tutorials/nixos/*
tutorials/cross-compilation.md
tutorials/dev-environment.md
recommended-reading.md recommended-reading.md
influences.md influences.md
``` ```
@ -47,6 +51,8 @@ influences.md
:hidden: :hidden:
recipes/* recipes/*
anti-patterns/*
templates/*
``` ```
```{toctree} ```{toctree}

View file

@ -0,0 +1,12 @@
# First Steps
This tutorial series is meant to be your first interaction with Nix.
```{toctree}
:maxdepth: 1
ad-hoc-developer-environments.md
reproducible-scripts.md
nix-language.md
towards-reproducibility-pinning-nixpkgs.md
declarative-and-reproducible-developer-environments.md
```

View file

@ -1,24 +0,0 @@
# Tutorials
This section contains a collection of articles on how to get things done in the Nix ecosystem.
```{toctree}
:glob: true
:maxdepth: 1
install-nix.md
ad-hoc-developer-environments.md
reproducible-scripts.md
nix-language.md
towards-reproducibility-pinning-nixpkgs.md
declarative-and-reproducible-developer-environments.md
continuous-integration-github-actions.md
dev-environment.md
building-and-running-docker-images.md
building-bootable-iso-image.md
deploying-nixos-using-terraform.md
installing-nixos-on-a-raspberry-pi.md
nixos-configuration-on-vm.md
integration-testing-using-virtual-machines.md
cross-compilation.md
```

View file

@ -0,0 +1,10 @@
# Build and Deploy
Learn how to build NixOS and run it in a variety of places.
```{toctree}
:glob:
:maxdepth: 1
*
```

View file

@ -0,0 +1,10 @@
# NixOS
Learn how to install, configure, and deploy NixOS.
```{toctree}
:glob:
:maxdepth: 1
build-and-deploy/index.md
```