Skip to content

Commit 241f922

Browse files
authored
nixos/galene: fix type error (NixOS#370556)
2 parents abbb32a + ef133ef commit 241f922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/services/web-apps/galene.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ in
152152
WorkingDirectory = cfg.stateDir;
153153
ExecStart = ''${cfg.package}/bin/galene \
154154
${optionalString (cfg.insecure) "-insecure"} \
155-
-http ${cfg.httpAddress}:${cfg.httpPort} \
155+
-http ${cfg.httpAddress}:${toString cfg.httpPort} \
156156
-turn ${cfg.turnAddress} \
157157
-data ${cfg.dataDir} \
158158
-groups ${cfg.groupsDir} \

0 commit comments

Comments
 (0)