From 1f3697d93026e9d3e572f6d9b61dfcc724d99351 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sat, 14 Mar 2026 18:50:32 -0400 Subject: [PATCH] fix --- system/machines/server/modules/frigate/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/machines/server/modules/frigate/default.nix b/system/machines/server/modules/frigate/default.nix index e8ca8a0..741db88 100644 --- a/system/machines/server/modules/frigate/default.nix +++ b/system/machines/server/modules/frigate/default.nix @@ -73,7 +73,7 @@ in }; living_room = { enabled = true; - detect.enabled = false; # No motion detection for indoor + detect.enabled = false; # Disable in GUI audio.enabled = true; ffmpeg.inputs = [ { @@ -82,13 +82,13 @@ in } { path = "rtsp://127.0.0.1:8554/living_room_sub"; - roles = [ "audio" ]; + roles = [ "detect" "audio" ]; } ]; }; kitchen = { enabled = true; - detect.enabled = false; # No motion detection for indoor + detect.enabled = false; # Disable in GUI audio.enabled = true; ffmpeg.inputs = [ { @@ -97,7 +97,7 @@ in } { path = "rtsp://127.0.0.1:8554/kitchen_sub"; - roles = [ "audio" ]; + roles = [ "detect" "audio" ]; } ]; };