From aba47c6ce97545f1ef484326a1c74854b1866442 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 17 Jan 2025 01:57:33 -0700 Subject: [PATCH] [NixOS] Fix home assistant config --- nixos/machines/justin-bieber-creek.nix | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/nixos/machines/justin-bieber-creek.nix b/nixos/machines/justin-bieber-creek.nix index 03ad3c25..55410116 100644 --- a/nixos/machines/justin-bieber-creek.nix +++ b/nixos/machines/justin-bieber-creek.nix @@ -17,24 +17,15 @@ services.home-assistant = { enable = true; config = { - homeassistant = { - name = "140 Hurd Lane #B104"; - # latitude = "39.631431415930564"; - # longitude = "-106.52015264624013"; - unit_system = "imperial"; - time_zone = "UTC"; - extraComponents = [ - # Components required to complete the onboarding - "esphome" - "met" - "radio_browser" - ]; - config = { - default_config = {}; - met = {}; - }; + extraComponents = [ + "esphome" + "met" + "radio_browser" + ]; + config = { + default_config = {}; + met = {}; }; - feedreader.urls = [ "https://nixos.org/blogs.xml" ]; }; };