Files
nixos-config/home/common/programs/aoe/default.nix
T
naps62 1cddd495cd feat: alias a=aoe
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-17 08:44:33 +00:00

16 lines
508 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 ];
home.shellAliases.a = "aoe";
}