snowflake/hosts/yuki/services/hass/config.nix
notohh 5b6e91249f
All checks were successful
flake check / check (push) Successful in 4m9s
fmt check / check (push) Successful in 53s
yuki: add basic hass config
2024-01-16 22:50:24 -05:00

18 lines
380 B
Nix

_: {
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 = {};
};
}