chore(lib/readme): use real-world example for directory structure vision

This commit is contained in:
Johannes Kirschbauer
2025-04-02 09:08:36 +02:00
parent d69a074366
commit ad43cb63ca

View File

@@ -44,15 +44,15 @@ Example filetree
```sh ```sh
. .
├── default.nix ├── default.nix
├── feature_foo ├── build-clan
│ ├── impl.nix │ ├── impl.nix
│ └── test.nix │ └── test.nix
└── feature_bar └── inventory
├── impl.nix ├── impl.nix
├── complex-subfeature ├── services-subfeature
│ ├── impl.nix │ ├── impl.nix
│ └── test.nix │ └── test.nix
├── testless-subfeature # <- We immediately see that this feature is not tested on itself. ├── instances-subfeature # <- We immediately see that this feature is not tested on itself.
│ └── impl.nix │ └── impl.nix
└── test.nix └── test.nix
``` ```