From f70d4a02fdabb3d7cdb29ea3e52412eb7ff6bc08 Mon Sep 17 00:00:00 2001 From: "every.channel" Date: Sun, 22 Feb 2026 23:40:17 -0800 Subject: [PATCH] nix/ec-node: use u32 for bridge timeout option --- nix/modules/ec-node.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/modules/ec-node.nix b/nix/modules/ec-node.nix index 61be430..2bd32c4 100644 --- a/nix/modules/ec-node.nix +++ b/nix/modules/ec-node.nix @@ -165,7 +165,7 @@ in }; timeoutMs = lib.mkOption { - type = lib.types.ints.u64; + type = lib.types.ints.u32; default = 30000; description = "Bridge run timeout; service restarts and refreshes gossip peers after this window (0 = run forever)."; };