This commit is contained in:
2026-07-21 09:47:02 -03:00
parent 726681e5c2
commit a2d55bf983
5 changed files with 194 additions and 5 deletions
@@ -12,6 +12,13 @@
plugin = [
"@dietrichgebert/ponytail"
];
mcp = {
n8n = {
type = "remote";
url = "https://n8n.joaoporta.com/mcp-server/http";
enabled = true;
};
};
};
};
};
+19
View File
@@ -0,0 +1,19 @@
{
config,
lib,
inputs,
pkgs,
...
}:
let
cfg = config.custom.hermes;
in
{
options.custom.hermes.enable = lib.mkEnableOption "Hermes Agent CLI";
config = lib.mkIf cfg.enable {
environment.systemPackages = [
inputs.hermes-agent.packages.${pkgs.system}.default
];
};
}