mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: adds home-assistant to dandelion
This commit is contained in:
parent
11747a2a92
commit
d7f6929e2d
2 changed files with 23 additions and 5 deletions
|
|
@ -1,7 +1,9 @@
|
||||||
{ ... }: {
|
{ ... }:
|
||||||
|
{
|
||||||
imports =
|
imports =
|
||||||
[(import ./docker.nix)]
|
[ (import ./docker.nix) ]
|
||||||
++ [(import ./immich.nix)]
|
++ [ (import ./immich.nix) ]
|
||||||
++ [(import ./nextcloud.nix)]
|
++ [ (import ./nextcloud.nix) ]
|
||||||
++ [(import ./scrutiny.nix)];
|
++ [ (import ./home-assistant.nix) ]
|
||||||
|
++ [ (import ./scrutiny.nix) ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
16
modules/services/home-assistant.nix
Normal file
16
modules/services/home-assistant.nix
Normal 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 = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue