From 90931e37ffd15c1eda6fb072c7c76b4cb3e3a734 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Tue, 24 Jun 2025 12:48:54 -0400 Subject: [PATCH] added home assistant might move into one of the existing modules --- modules/machine/valefor/configuration.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/machine/valefor/configuration.nix b/modules/machine/valefor/configuration.nix index 53930bf..8a19ce8 100644 --- a/modules/machine/valefor/configuration.nix +++ b/modules/machine/valefor/configuration.nix @@ -99,5 +99,21 @@ # Add username to groups "wheel" and "video" - more may be added here later users.users.${userName}.extraGroups = ["wheel" "podman" "network"]; + # Add Home Assistant service + services.home-assistant = { + enable = true; + extraComponents = [ + # Components required to complete the onboarding + "esphome" + "met" + "radio_browser" + ]; + config = { + # Includes dependencies for a basic setup + # https://www.home-assistant.io/integrations/default_config/ + default_config = {}; + }; + }; + system.stateVersion = "24.11"; }