mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
fix
This commit is contained in:
parent
2c21f2acea
commit
1f3697d930
1 changed files with 4 additions and 4 deletions
|
|
@ -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" ];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue