Conventions for writing justfile recipes in Nix-based projects.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add srid/emanote --skill nix-justfile --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Nix Justfile?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/srid-nix-justfile)More formats (shields.io, HTML) on the badges page.
---
name: nix-justfile
description: Conventions for writing justfile recipes in Nix-based projects.
user-invocable: false
---
# Justfile in Nix projects
## Doc comments
Every recipe must have a doc comment (`#` line above the recipe name).
## Devshell detection
Use a `nix_shell` variable to auto-detect whether we're inside `nix develop`:
```just
nix_shell := if env('IN_NIX_SHELL', '') != '' { '' } else { 'nix develop -c' }
```
Prefix commands that need devshell tools (node, trunk, cargo-watch, etc.) with `{{nix_shell}}`. Recipes that invoke `nix` directly (build, run, flake commands) don't need it.
## Legibility
Long chained commands should use multiline `\` continuations.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!