From 9d8777e85c5f9909a50c2f9d6183f02c9689df01 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 19 Jan 2025 17:35:50 +0000 Subject: [PATCH] [NixOS] Add extensions that fix home-assistant to justin-bieber-creek --- nixos/machines/justin-bieber-creek.nix | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/nixos/machines/justin-bieber-creek.nix b/nixos/machines/justin-bieber-creek.nix index 584b7fac..f5f55ad9 100644 --- a/nixos/machines/justin-bieber-creek.nix +++ b/nixos/machines/justin-bieber-creek.nix @@ -17,15 +17,33 @@ services.home-assistant = { enable = true; extraComponents = [ + "anthropic" + "cast" + "dlna_dmr" "esphome" + "google_assistant" + "homeassistant_hardware" + "homeassistant_sky_connect" + "isal" + "kef" + "matter" "met" + "opensky" + "otbr" "radio_browser" + "roomba" + "samsungtv" + "thread" + "webostv" + "yale" + ]; + extraPackages = python3Packages: with python3Packages; [ + numpy + python-matter-server + universal-silabs-flasher ]; config = { - config = { - default_config = {}; - met = {}; - }; + default_config = {}; }; };