Home Assistant: Difference between revisions

Sandro (talk | contribs)
Link directly
Hexa (talk | contribs)
Line 65: Line 65:
The following is a minimal configuration, that has all the dependencies that are required to complete the initial configuration flow, that creates your first user:
The following is a minimal configuration, that has all the dependencies that are required to complete the initial configuration flow, that creates your first user:


<syntaxHighlight lang=nix>
<syntaxhighlight lang="nix">
{
{
   services.home-assistant = {
   services.home-assistant = {
Line 74: Line 74:
       "met"
       "met"
       "radio_browser"
       "radio_browser"
      # Recommended for fast zlib compression
      # https://www.home-assistant.io/integrations/isal
      "isal"
     ];
     ];
     config = {
     config = {
Line 82: Line 85:
   };
   };
}
}
</syntaxHighlight>
</syntaxhighlight>


=== Imperative configuration ===
=== Imperative configuration ===