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

17 lines
221 B
Nix

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