Home Assistant: Difference between revisions

imported>W4tsn
Replace undocumented (and possibly non-effective) option "ensurePermissions" with ensureDBOwnership.
imported>W4tsn
Declarative configuration: Add a note about updating the firewall if not using
Line 75: Line 75:
     };
     };
   };
   };
}
</syntaxHighlight>
If not using a reverse-proxy and you just want unencrypted access on a local network don't forget to update your firewall configuration to expose the port home-assistant is running on.
<syntaxHighlight lang=nix>
{
  networking.firewall.allowedTCPPorts = [ <other ports> 8123 ];
}
}
</syntaxHighlight>
</syntaxHighlight>