Enable home-assistant for ha1

This commit is contained in:
Torjus Håkestad 2024-05-01 19:18:28 +02:00
parent 574b53c828
commit 02086999cc
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ ... }: { { ... }: {
imports = [ imports = [
./configuration.nix ./configuration.nix
../../services/home-assistant
]; ];
} }

View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
services.home-assistant = {
enable = true;
configWritable = true;
};
}