Home Assistant: Difference between revisions

Hexa (talk | contribs)
Show logo from mediawiki commons
Sandro (talk | contribs)
drop no longer required openssl 1.1.1 workaround
Line 90: Line 90:
{
{
   networking.firewall.allowedTCPPorts = [ <other ports> 8123 ];
   networking.firewall.allowedTCPPorts = [ <other ports> 8123 ];
}
</syntaxHighlight>
===== OpenSSL 1.1 is marked as insecure, refusing to evaluate  =====
As of Home Assistant 2023.12.0 many components started depending on the <code>matter</code> integration. It unfortunately still relies on OpenSSL 1.1, which has gone end of life in 2023/09. For <code>home-assistant</code> deployments to work after this release you most likely need to allow this insecure dependency in our system configuration.
<syntaxHighlight lang=nix>
{
  nixpkgs.config.permittedInsecurePackages = [
    "openssl-1.1.1w"
  ];
}
}
</syntaxHighlight>
</syntaxHighlight>