Commit 6f382bd6dca0

Vincent Demeester <vincent@sbr.pm>
2026-03-26 05:48:56
feat(rhea): add ffsubsync to bazarr service PATH
Added ffsubsync and ffmpeg-full to bazarr's systemd service PATH so subtitle synchronization works automatically. Bazarr had use_subsync enabled but couldn't find the binaries.
1 parent aa4f2d1
Changed files (1)
systems
systems/rhea/extra.nix
@@ -861,6 +861,12 @@ in
     ];
   };
 
+  # Add ffsubsync and ffmpeg to bazarr's PATH for subtitle synchronization
+  systemd.services.bazarr.path = with pkgs; [
+    ffsubsync
+    ffmpeg-full
+  ];
+
   # Environment file for Gandi API key (managed by agenix)
   systemd.services.traefik.serviceConfig = {
     EnvironmentFile = config.age.secrets."gandi.env".path;