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

19 lines
380 B
Nix
Raw Normal View History

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