17 lines
220 B
Nix
17 lines
220 B
Nix
|
{ config, pkgs, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
services.home-assistant = {
|
||
|
enable: true;
|
||
|
extraComponents = [
|
||
|
"esphome"
|
||
|
"met"
|
||
|
"radio_browser"
|
||
|
];
|
||
|
config = {
|
||
|
default_config = {};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|