feat: adds home-assistant to dandelion

This commit is contained in:
Ahwx 2025-04-19 00:13:35 +02:00
parent 11747a2a92
commit d7f6929e2d
2 changed files with 23 additions and 5 deletions

View file

@ -1,7 +1,9 @@
{ ... }: {
{ ... }:
{
imports =
[(import ./docker.nix)]
++ [(import ./immich.nix)]
++ [(import ./nextcloud.nix)]
++ [(import ./scrutiny.nix)];
[ (import ./docker.nix) ]
++ [ (import ./immich.nix) ]
++ [ (import ./nextcloud.nix) ]
++ [ (import ./home-assistant.nix) ]
++ [ (import ./scrutiny.nix) ];
}

View file

@ -0,0 +1,16 @@
{
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 = { };
};
};
}