Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion nix/hermes-agent.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,14 @@
}:
let
nodejs = nodejs_22;
# The sealed Nix runtime lives in the store, so first-use lazy installs
# cannot repair missing Python backends there. Ship the managed FAL
# backend in the default package so `hermes --tui` image generation works
# out of the box on the documented Nix install path.
nixRuntimeDependencyGroups = [ "fal" ];
hermesVenv = callPackage ./python.nix {
inherit uv2nix pyproject-nix pyproject-build-systems;
dependency-groups = [ "all" ] ++ extraDependencyGroups;
dependency-groups = [ "all" ] ++ nixRuntimeDependencyGroups ++ extraDependencyGroups;
};

hermesNpmLib = callPackage ./lib.nix {
Expand Down
Loading