You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(readme): improve Nix development environment setup instructions
- Add Nix installation command using experimental installer
- Add instructions for enabling flakes if not already enabled
- Clarify direnv activation (use existing .envrc)
- Link to flake.nix for reference
- Reorganise useful commands into separate section
Copy file name to clipboardExpand all lines: README.md
+26-9Lines changed: 26 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -337,20 +337,27 @@ For more examples, check out the [examples/](examples/) directory:
337
337
338
338
### Using Nix (Recommended)
339
339
340
-
[Nix](https://nixos.org/) with flakes provides a consistent development environment:
340
+
This project includes a Nix flake for reproducible development environments. All development tools are defined in [flake.nix](./flake.nix) and provided via Nix.
341
+
342
+
#### Installing Nix
341
343
342
344
```bash
343
-
# Enter development environment (auto-installs dependencies and git hooks)
344
-
nix develop
345
+
# Install Nix with flakes enabled (if not already installed)
0 commit comments