Convert tatoeba port number to string in flake

This commit is contained in:
Elnu 2023-08-12 13:16:00 -07:00
parent 9de425a7a2
commit 7591109e50

View file

@ -86,7 +86,7 @@
wantedBy = [ "network.target" ];
serviceConfig = {
ExecStart = ''
${cfg.package}/bin/tatoeba --port ${cfg.port}
${cfg.package}/bin/tatoeba --port ${builtins.toString cfg.port}
'';
Restart = "always";
DynamicUser = true;