mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
service/home-assistant: fix int with toString
This commit is contained in:
parent
745c712c72
commit
7edf0432b8
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ in
|
||||||
unit_system = "metric";
|
unit_system = "metric";
|
||||||
time_zone = cfg.timezone;
|
time_zone = cfg.timezone;
|
||||||
external_url = "https://automation.${domain}";
|
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 = {
|
http = {
|
||||||
server_port = cfg.port;
|
server_port = cfg.port;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue