snowflake/hosts/yuki/services/hass/config.nix

19 lines
375 B
Nix
Raw Normal View History

2024-01-16 22:50:24 -05:00
_: {
services.home-assistant.config = {
lovelace.mode = "yaml";
http = {
2024-01-23 22:06:34 -05:00
server_host = "0.0.0.0";
server_port = 8123;
2024-01-16 22:50:24 -05:00
};
homeassistant = {
name = "Home";
time_zone = "America/New_York";
unit_system = "imperial";
temperature_unit = "F";
currency = "USD";
country = "US";
};
default_config = {};
};
}