Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/malob/nix-config/claude-mdgit clone --depth 1 https://github.com/malob/nix-configWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/malob/nix-config/claude-md)<a href="https://agentmods.dev/instructions/malob/nix-config/claude-md"><img src="https://agentmods.dev/badge/instructions/malob/nix-config/claude-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01466 | $0.01466 |
| Opus 5 | $0.00733 | $0.00733 |
| Sonnet 5 | $0.00293 | $0.00293 |
| Haiku 4.5 | $0.00147 | $0.00147 |
Grade C, and why
nix-config CLAUDE.md scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf ~/.claude/plugins/cache/malos-plugins/<plugin-name> How it starts
The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Build Commands
# Build and switch to the macOS nix-darwin configuration
nh darwin switch --no-nom
# Build without switching (for testing)
nh darwin build --no-nom
# Update all flake inputs
nix flake update
# Update a specific input
nix flake update nixpkgs-unstable
Architecture
This is a Nix flake that manages system configuration for macOS (via nix-darwin) and Linux (via home-manager).
Key Structure
flake.nix- Main entry point defining inputs, outputs, overlays, and system configurationsdarwin/- nix-darwin modules for macOS system-level configurationhome/- home-manager modules for user-level configurationmodules/- Reusable modules (both darwin and home-manager)lib/- Helper functions includingmkDarwinSystemconfigs/- Application configs (Claude Code) symlinked for live editingoverlays/- Nixpkgs overlays
System Configurations
darwinConfigurations.MaloBookPro- Primary macOS config, built withlib.mkDarwinSystemdarwinConfigurations.githubCI- CI variant with homebrew disabledhomeConfigurations.malo- Standalone home-manager config for Linux
User Info Pattern
User info is defined once and referenced throughout:
- Passed to
lib.mkDarwinSystemasusername,fullName,email,nixConfigDirectory - Set on
users.primaryUserin darwin config - Available as
config.home.user-infoin all home-manager modules
Example usage in a home module:
{ config, ... }:
let
inherit (config.home.user-info) email nixConfigDirectory;
in { ... }
Live-Editable Configs
Files in configs/ are symlinked via mkOutOfStoreSymlink, allowing edits without rebuild:
configs/claude/→~/.claude/(CLAUDE-USER.md → CLAUDE.md, settings.json, commands, plugins, etc.)
Claude Code settings use a hybrid approach:
managed-settings.json(Nix-generated at/Library/Application Support/ClaudeCode/): Has highest precedence. Contains only path-dependent settings needingnixConfigDirectoryinterpolation (additionalDirectories, nix-config permissions,extraKnownMarketplaces). Created bydarwin/claude-managed-settings.nix.settings.json(user-editable symlink fromconfigs/claude/): All other settings using portable~paths. Edit directly without rebuild.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 132 lines · 1,466 tokens per session scan C 37b281aea22a
nix-config CLAUDE.md is an instructions file published in the GitHub repository malob/nix-config (462 stars, last pushed 5d ago), licensed MIT. It adds 1,466 tokens to every session, about $0.0073 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
nxv AGENTS.md
Instructions for utensils/nxv, covering agents.md, project overview, development environment, build commands and nix flake outputs.
hoenn AGENTS.md
AGENTS.md instructions for alyraffauf/hoenn, covering work in hoenn, check a change, deploy deliberately and keep secrets out of git.
nix-config AGENTS.md
AGENTS.md instructions for dliberalesso/nix-config, covering agent instructions for nix-config, build/lint/test commands, architecture guidance, architecture and common patterns.
dotfiles AGENTS.md
AGENTS.md instructions for signalridge/dotfiles, covering article 1 — no git worktrees. ever. 🚫🌳, article 2 — never switch the shared main checkout and article 3 — merging & sync.
dotfiles CLAUDE.md
Claude Code instructions for signalridge/dotfiles, covering article 1 — no git worktrees. ever. 🚫🌳, article 2 — never switch the shared main checkout and article 3 — merging & sync.
nxv CLAUDE.md
Instructions for utensils/nxv, a project described as: Find any version of any Nix package, instantly. Fast CLI + HTTP API + web UI over 9+ years of indexed nixpkgs history — get the exact commit for nix shell nixpkgs/ #pkg.