From 5b49310049f3e64009b584554881a748adbca8df Mon Sep 17 00:00:00 2001 From: Ciphercat <78522797+0xrsydn@users.noreply.github.com> Date: Mon, 16 Mar 2026 00:40:30 +0000 Subject: [PATCH] chore: rename to nix-hermes-agent --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 70e2e48..85e753c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# nix-hermes +# nix-hermes-agent Declarative Nix package and NixOS module for [Hermes Agent](https://github.com/NousResearch/hermes-agent) by Nous Research. @@ -10,7 +10,7 @@ Everything is configured in Nix. Config, documents, secrets, service — one `ni ```nix { - inputs.nix-hermes.url = "github:0xrsydn/nix-hermes"; + inputs.nix-hermes.url = "github:0xrsydn/nix-hermes-agent"; outputs = { self, nixpkgs, nix-hermes, ... }: { nixosConfigurations.myhost = nixpkgs.lib.nixosSystem { @@ -249,10 +249,10 @@ See the [full config reference](https://raw.githubusercontent.com/NousResearch/h ```bash # Run directly -nix run github:0xrsydn/nix-hermes -- --help +nix run github:0xrsydn/nix-hermes-agent -- --help # In a dev shell -nix develop github:0xrsydn/nix-hermes +nix develop github:0xrsydn/nix-hermes-agent # Use the overlay nixpkgs.overlays = [ nix-hermes.overlays.default ];