nixos/veilid: add a description of options

Changed files
+3
nixos
modules
services
networking
+3
nixos/modules/services/networking/veilid.nix
···
ipc_directory = mkOption {
type = types.str;
default = "${dataDir}/ipc";
+
description = "IPC directory where file sockets are stored.";
};
};
logging = {
···
node_id = 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.";
};
};
dht = {