Nix Installation

Install Pllan declaratively with nix-pllan — a batteries-included Home Manager module.
The nix-pllan repo is the source of truth for Nix installation. This page is a quick overview.

What You Get

  • Gateway + macOS app + tools (whisper, spotify, cameras) — all pinned
  • Launchd service that survives reboots
  • Plugin system with declarative config
  • Instant rollback: home-manager switch --rollback

Quick Start

1

Install Determinate Nix

If Nix is not already installed, follow the Determinate Nix installer instructions.
2

Create a local flake

Use the agent-first template from the nix-pllan repo:
mkdir -p ~/code/pllan-local
# Copy templates/agent-first/flake.nix from the nix-pllan repo
3

Configure secrets

Set up your messaging bot token and model provider API key. Plain files at ~/.secrets/ work fine.
4

Fill in template placeholders and switch

home-manager switch
5

Verify

Confirm the launchd service is running and your bot responds to messages.
See the nix-pllan README for full module options and examples.

Nix Mode Runtime Behavior

When PLLAN_NIX_MODE=1 is set (automatic with nix-pllan), Pllan enters a deterministic mode that disables auto-install flows. You can also set it manually:
export PLLAN_NIX_MODE=1
On macOS, the GUI app does not automatically inherit shell environment variables. Enable Nix mode via defaults instead:
defaults write ai.pllan.mac pllan.nixMode -bool true

What changes in Nix mode

  • Auto-install and self-mutation flows are disabled
  • Missing dependencies surface Nix-specific remediation messages
  • UI surfaces a read-only Nix mode banner

Config and state paths

Pllan reads JSON5 config from PLLAN_CONFIG_PATH and stores mutable data in PLLAN_STATE_DIR. When running under Nix, set these explicitly to Nix-managed locations so runtime state and config stay out of the immutable store.
VariableDefault
PLLAN_HOMEHOME / USERPROFILE / os.homedir()
PLLAN_STATE_DIR~/.pllan
PLLAN_CONFIG_PATH$PLLAN_STATE_DIR/pllan.json