diff --git a/system/kernighan/services/home_assistant.nix b/system/kernighan/services/home_assistant.nix new file mode 100644 index 0000000..6b42205 --- /dev/null +++ b/system/kernighan/services/home_assistant.nix @@ -0,0 +1,16 @@ +{ config, pkgs, inputs, ... }: + +{ + services.home-assistant = { + enable: true; + extraComponents = [ + "esphome" + "met" + "radio_browser" + ]; + config = { + default_config = {}; + }; + }; +} +