service/home-assistant: fix int with toString

This commit is contained in:
Felix Buehler 2023-11-20 21:54:32 +01:00
parent 745c712c72
commit 7edf0432b8

View file

@ -93,7 +93,7 @@ in
unit_system = "metric";
time_zone = cfg.timezone;
external_url = "https://automation.${domain}";
internal_url = "http://127.0.0.1:${cfg.port}";
internal_url = "http://127.0.0.1:${toString cfg.port}";
};
http = {
server_port = cfg.port;