Docs: remove useless repo-layout file

This commit is contained in:
Johannes Kirschbauer
2025-05-18 18:49:29 +02:00
parent 3051763cbf
commit 04146eeac9
2 changed files with 0 additions and 21 deletions

View File

@@ -74,7 +74,6 @@ nav:
- Contribute: guides/contributing/CONTRIBUTING.md
- Debugging: guides/contributing/debugging.md
- Testing: guides/contributing/testing.md
- Repo Layout: manual/repo-layout.md
- Migrations:
- Migrate existing Flakes: manual/migration-guide.md
- Migrate inventory Services: guides/migrations/migrate-inventory-services.md

View File

@@ -1,20 +0,0 @@
This guide will help you navigate the codebase and locate key files:
```bash
$ tree -L 1
.
├── checks # Contains NixOS and VM tests
├── clanModules # Clan modules available for end-user import
├── docs # Source files for docs.clan.lol, generated with MkDocs
├── flakeModules
├── lib # User-exposed Clan Nix functions like buildClan and inventory
├── machines
├── nixosModules # Internal Clan Nix functions, e.g., clanCore
├── pkgs # Clan applications and packaged dependencies
├── formatter.nix # Configuration for nix-treefmt, manages `nix fmt`
├── scripts
├── sops
├── templates # Template files for creating a new Clan
└── vars
```