Merge pull request #237507 from Alexis211/document-wgautomesh-gossip-secret

wgautomesh: clearer documentation for `gossip_secret_file`
This commit is contained in:
Nick Cao 2023-06-24 22:48:34 +08:00 committed by GitHub
commit cca08f710c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,8 +35,10 @@ in
gossipSecretFile = mkOption {
type = types.path;
description = mdDoc ''
File containing the shared secret key to use for gossip encryption.
Required if `enableGossipEncryption` is set.
File containing the gossip secret, a shared secret key to use for gossip
encryption. Required if `enableGossipEncryption` is set. This file
may contain any arbitrary-length utf8 string. To generate a new gossip
secret, use a command such as `openssl rand -base64 32`.
'';
};
enablePersistence = mkOption {