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
+2 -2
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
'';