nix/ec-node: use u64 type for bridge timeout option

This commit is contained in:
every.channel 2026-02-22 23:39:42 -08:00
parent c9996dd5ad
commit 3cc6e5eba2
No known key found for this signature in database

View file

@ -165,7 +165,7 @@ in
}; };
timeoutMs = lib.mkOption { timeoutMs = lib.mkOption {
type = lib.types.ints.nonnegative; type = lib.types.ints.u64;
default = 30000; default = 30000;
description = "Bridge run timeout; service restarts and refreshes gossip peers after this window (0 = run forever)."; description = "Bridge run timeout; service restarts and refreshes gossip peers after this window (0 = run forever).";
}; };