From e2d8123f5beb81f3776a48b7f598a1dffe147fbd Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 20 Mar 2023 18:36:26 -0700 Subject: [PATCH] toString for port --- module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.nix b/module.nix index bd5fb81..09f47e7 100644 --- a/module.nix +++ b/module.nix @@ -114,7 +114,7 @@ in { "--mqtt-user=${cfg.mqtt-client.username}" "--mqtt-password-file=$CREDENTIALS_DIRECTORY/mqtt.passwd" "--objectifier-host=${cfg.objectifier-client.host}" - "--objectifier-port=${cfg.objectifier-client.port}" + "--objectifier-port=${toString cfg.objectifier-client.port}" ]) ++ (optional cfg.verbose "--verbose")); }; };