Add HomeAssistant on kernighan

This commit is contained in:
Trevor Vallender 2023-07-27 18:45:53 +01:00
parent 48f9ccd519
commit d03872f7f8
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ config, pkgs, inputs, ... }:
{
services.home-assistant = {
enable: true;
extraComponents = [
"esphome"
"met"
"radio_browser"
];
config = {
default_config = {};
};
};
}