Monorepo for Tangled tangled.org

nix/spindle: add descriptions to server.secrets.openbao

+2
+2
nix/modules/spindle.nix
··· 86 proxyAddr = mkOption { 87 type = types.str; 88 default = "http://127.0.0.1:8200"; 89 }; 90 mount = mkOption { 91 type = types.str; 92 default = "spindle"; 93 }; 94 }; 95 };
··· 86 proxyAddr = mkOption { 87 type = types.str; 88 default = "http://127.0.0.1:8200"; 89 + description = "Address of the OpenBAO proxy server"; 90 }; 91 mount = mkOption { 92 type = types.str; 93 default = "spindle"; 94 + description = "Mount path in OpenBAO to read secrets from"; 95 }; 96 }; 97 };