Home Assistant: Difference between revisions

imported>Ibizaman
Custom components and lovelace modules can now be added declaratively
imported>Mweinelt
OpenSSL 1.1 explanation
Line 75: Line 75:
     };
     };
   };
   };
}
</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>