From 1af3286800af08025dfe8c220c0c53fde2b48818 Mon Sep 17 00:00:00 2001 From: Bruno Bigras <24027+bbigras@users.noreply.github.com> Date: Tue, 23 Sep 2025 13:55:38 -0400 Subject: [PATCH] nixos/veilid: node_id -> public_keys --- nixos/modules/services/networking/veilid.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/veilid.nix b/nixos/modules/services/networking/veilid.nix index d471a5f61952..3540e9abd849 100644 --- a/nixos/modules/services/networking/veilid.nix +++ b/nixos/modules/services/networking/veilid.nix @@ -193,7 +193,7 @@ in default = [ "bootstrap.veilid.net" ]; description = "Host name of existing well-known Veilid bootstrap servers for the network to connect to."; }; - node_id = lib.mkOption { + public_keys = lib.mkOption { type = lib.types.nullOr lib.types.str; default = null; description = "Base64-encoded public key for the node, used as the node's ID.";