Nix-Config/system/kernighan/services/home_assistant.nix

17 lines
220 B
Nix
Raw Normal View History

2023-07-27 17:45:53 +00:00
{ config, pkgs, inputs, ... }:
{
services.home-assistant = {
enable: true;
extraComponents = [
"esphome"
"met"
"radio_browser"
];
config = {
default_config = {};
};
};
}