diff --git a/docs/content/en-US/02-lay-of-the-land/02-project-structure/index.adoc b/docs/content/en-US/02-lay-of-the-land/02-project-structure/index.adoc index f7a7780c..f4cdcc4b 100644 --- a/docs/content/en-US/02-lay-of-the-land/02-project-structure/index.adoc +++ b/docs/content/en-US/02-lay-of-the-land/02-project-structure/index.adoc @@ -13,6 +13,7 @@ My NixOS config should look like the following: [source, tree] ---- nixos-config +├── docs/ ├── hosts/ ├── lib/ ├── modules/ @@ -38,6 +39,9 @@ For more details, see xref:../../03-project-specific-setup/02-declarative-user-m Most of the said folders are related to a flake output attribute, see xref:../03-whats-in-my-flake/index.adoc[What's in my flake?] for more details. +* `./docs/` contain the source code for the website. +Currently, it uses link:https://gohugo.io/[Hugo] for statically generating the website. + * `./hosts/` contain machine-specific configuration. This usually configures like the hardware setup, timezone, and users. Host configurations are also exported in the flakes in `outputs.nixosConfigurations`.