diff --git a/frigate-container.nix b/frigate-container.nix index 989dce5..7e91023 100644 --- a/frigate-container.nix +++ b/frigate-container.nix @@ -27,6 +27,7 @@ let ffmpeg.hwaccel_args = optional (cfg.hwaccel != null) cfg.hwaccel; cameras = mapAttrs' (_: camOpts: nameValuePair camOpts.name { + birdseye.mode = "objects"; ffmpeg.inputs = [ { path = camOpts.streams.high; @@ -54,6 +55,10 @@ let objects = cfg.retention.objects; }; }; + birdseye = { + enabled = true; + mode = "continuous"; + }; }; in pkgs.writeText "frigate.yaml" content;