18 lines
375 B
Nix
18 lines
375 B
Nix
_: {
|
|
services.home-assistant.config = {
|
|
lovelace.mode = "yaml";
|
|
http = {
|
|
server_host = "0.0.0.0";
|
|
server_port = 8123;
|
|
};
|
|
homeassistant = {
|
|
name = "Home";
|
|
time_zone = "America/New_York";
|
|
unit_system = "imperial";
|
|
temperature_unit = "F";
|
|
currency = "USD";
|
|
country = "US";
|
|
};
|
|
default_config = {};
|
|
};
|
|
}
|