testing home-assistant

This commit is contained in:
Richie Cahill 2024-08-05 20:45:07 -04:00
parent d12ca3fb0e
commit aef86f5b89
3 changed files with 18 additions and 0 deletions

View File

@ -94,6 +94,7 @@
"hexeditor",
"hicolor",
"hkps",
"homeassistant",
"HPKP",
"HRDN",
"htmlaboutaddons",

View File

@ -5,6 +5,7 @@
../../users/richie/global/zerotier.nix
./arch_mirror.nix
./docker
./home_assistant.nix
./services.nix
];

View File

@ -0,0 +1,16 @@
{
services.home-assistant = {
enable = true;
openFirewall = true;
config = {
server_port = 8123;
homeassistant = {
time_zone = "America/New_York";
unit_system = "imperial";
temperature_unit = "F";
longitude = 40.74;
latitude = 74.03;
};
};
};
}