Home Assistant: Difference between revisions
Link directly |
|||
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"> | ||
{ | { | ||
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> | ||
=== Imperative configuration === | === Imperative configuration === |