fix: add uv to hermes-agent service PATH #7

Merged
m3tam3re merged 1 commits from fix/hermes-agent-uv-path into master 2026-04-29 16:24:17 +02:00
2 changed files with 5 additions and 0 deletions

View File

@@ -21,6 +21,7 @@
git git
tea tea
ghostty.terminfo ghostty.terminfo
uv
]; ];
services.openssh = { services.openssh = {

View File

@@ -70,6 +70,10 @@ in {
''; '';
}; };
# Ensure 'uv' is in the hermes-agent service PATH so CronJobs and terminal
# sessions can use 'uv run' for PEP 723 scripts (e.g. garmin-daily.py).
systemd.services.hermes-agent.path = [pkgs.uv];
services.hermes-agent = { services.hermes-agent = {
enable = true; enable = true;
addToSystemPackages = true; addToSystemPackages = true;