5ba12d3684
All four tools' context wiring lives there now; this file just installs the package.
13 lines
456 B
Nix
13 lines
456 B
Nix
{ pkgs, ... }:
|
|
let
|
|
pi = pkgs.callPackage ../../../pkgs/pi/package.nix { };
|
|
in
|
|
{
|
|
# ~/.pi/agent/AGENTS.md comes from the agent-skills home-manager module
|
|
# (pi has no @file imports, so the module concatenates the shared fragments).
|
|
# Pi reads skills straight from ~/.agents/skills, which the module links.
|
|
# Settings stay unmanaged: pi writes ~/.pi/agent/settings.json itself from
|
|
# /settings, /trust and `pi config`.
|
|
home.packages = [ pi ];
|
|
}
|