Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ Fix the recipe and push a follow-up commit until all targets pass.

The CI only checks that `just <recipe>` exits 0, not that the binary works. If the justfile target lacks a verification command (e.g., `emacs --version`), add one.

## macOS: never use Homebrew

Mac tooling comes from nix (`nix/home/packages.nix`), never brew. If an installer brews on macOS (e.g. fnm), add the tool to nix and gate the installer behind `command -v <tool>`.

## Command Chaining

- `git commit` must always run alone — never chain it with other commands.
Expand Down
3 changes: 3 additions & 0 deletions nix/home/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@
# from init.sh + scripts/install-wezterm.sh
just
wezterm

# from scripts/install-node.sh
fnm
];
}