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
Copy file name to clipboardExpand all lines: README.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -600,13 +600,27 @@ The tool description includes clear instructions for AI agents to always ask for
600
600
601
601
### Using Nix Flake
602
602
603
-
This project includes a Nix flake for reproducible development environments. If you have Nix installed with flakes enabled, you can use it to set up your development environment:
603
+
This project includes a Nix flake for reproducible development environments. All development tools are defined in [flake.nix](./flake.nix) and provided via Nix.
604
+
605
+
#### Installing Nix
604
606
605
607
```bash
606
-
# Enter development shell
607
-
nix develop
608
+
# Install Nix with flakes enabled (if not already installed)
0 commit comments