032cea0db8
Drops the stale skills/commands/CLAUDE.md from home/common/programs/claude in favour of the agent-skills flake, which is the maintained copy. The module keeps what agent-skills does not own: packages, statusline and settings.json. aoe's config.toml moves to home/yolo — it sets yolo_mode_default, which starts sessions with permission checks skipped. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
14 lines
476 B
Nix
14 lines
476 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
# Agent of Empires: the agent session manager. The package only — settings are
|
|
# per-host, because config.toml carries `yolo_mode_default`, which decides
|
|
# whether sessions start with permission checks skipped.
|
|
{
|
|
# aoe-with-web, not default: same single `aoe` binary plus the `serve`
|
|
# subcommand (web dashboard). The default build has no `serve` at all.
|
|
home.packages = [ inputs.agent-of-empires.packages.${pkgs.system}.aoe-with-web ];
|
|
}
|