From 3cc6e5eba2bebc899f80aac2ee44732c35e3fe3d Mon Sep 17 00:00:00 2001 From: "every.channel" Date: Sun, 22 Feb 2026 23:39:42 -0800 Subject: [PATCH] nix/ec-node: use u64 type 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 50b0804..61be430 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.nonnegative; + type = lib.types.ints.u64; default = 30000; description = "Bridge run timeout; service restarts and refreshes gossip peers after this window (0 = run forever)."; };