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"; }