Merge pull request #308300 from Lynnaut/vault

nixos/vault: change type and default of devRootTokenID
This commit is contained in:
pennae 2024-05-01 18:21:01 +02:00 committed by GitHub
commit cadb9fc5e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,8 +56,8 @@ in
};
devRootTokenID = mkOption {
type = types.str;
default = false;
type = types.nullOr types.str;
default = null;
description = ''
Initial root token. This only applies when {option}`services.vault.dev` is true
'';