frigate and hass: +mqtt

This commit is contained in:
2025-02-21 20:10:37 +00:00
parent 1410e58a6f
commit 06d8f0eaa7
2 changed files with 14 additions and 1 deletions

View File

@@ -139,6 +139,12 @@ in
hostname = "r1.jakstys.lt";
settings = {
ffmpeg.hwaccel_args = "preset-vaapi";
mqtt = {
enabled = true;
host = "::";
};
detect = {
enabled = true;
fps = 5;

View File

@@ -26,7 +26,14 @@ in
services = {
mosquitto = {
enable = true;
listeners = [ { address = "::"; } ];
listeners = [
{
address = "::";
acl = [ "pattern readwrite #" ];
omitPasswordAuth = true;
settings.allow_anonymous = true;
}
];
};
home-assistant = {