hermes
This commit is contained in:
@@ -12,6 +12,13 @@
|
||||
plugin = [
|
||||
"@dietrichgebert/ponytail"
|
||||
];
|
||||
mcp = {
|
||||
n8n = {
|
||||
type = "remote";
|
||||
url = "https://n8n.joaoporta.com/mcp-server/http";
|
||||
enabled = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user