Boring Infra Co.

Root Quick Start

Install Root and your first CLI tool in under five minutes.


Install

curl -fsSL https://boringinfra.company/root/install.sh | sh

Root will offer to install Nix via the Determinate installer if it is not already present.

Verify your setup

root doctor

This checks Nix availability, profile paths, and lockfile state.

Browse the catalog

root catalog

Root ships with 42 curated tools across categories like search, JSON processing, containers, and cloud CLIs.

Install your first tool

Always plan before you apply:

root plan install ripgrep
root install ripgrep
root verify ripgrep

Root snapshots your state before the install and updates root.lock with the exact Nix store path.

Undo if needed

root rollback --last

This restores the previous locked state from the snapshot taken before your last mutation.

Share across machines

Commit your root.lock and restore on another machine:

root restore --lock ./root.lock

JSON for automation

root catalog --json
root plan install ripgrep --json

Next steps