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

17 lines
221 B
Nix
Raw Normal View History

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