summaryrefslogtreecommitdiff
path: root/adonis/autopush
diff options
context:
space:
mode:
Diffstat (limited to 'adonis/autopush')
-rw-r--r--adonis/autopush/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/adonis/autopush/default.nix b/adonis/autopush/default.nix
index 983170d..ff87845 100644
--- a/adonis/autopush/default.nix
+++ b/adonis/autopush/default.nix
@@ -31,7 +31,7 @@ in {
systemd.services = {
autopush-autoconnect = {
environment = {
- AUTOCONNECT__DB_DSN = "redis://127.0.0.1:${redisPort}";
+ AUTOCONNECT__DB_DSN = "redis://127.0.0.1:${builtins.toString redisPort}";
AUTOCONNECT__ENDPOINT_SCHEME = "https";
AUTOCONNECT__ENDPOINT_HOSTNAME = "update.${domain}";
AUTOCONNECT__ENDPOINT_PORT = endpointPort;
@@ -46,7 +46,7 @@ in {
};
autopush-autoendpoint = {
environment = {
- AUTOEND__DB_DSN = "redis://127.0.0.1:${redisPort}";
+ AUTOEND__DB_DSN = "redis://127.0.0.1:${builtins.toString redisPort}";
AUTOEND__HOST = "0.0.0.0";
AUTOEND__PORT = port;
AUTOEND__ENDPOINT_URL = "https://update.${domain}";