nixos/vault: change type and default of devRootTokenID
Previously you needed to set an devRootTokenID when dev=true despite the option being optional Caused by wrong default value and not allowing null as value
This commit is contained in:
parent
9f84a63460
commit
e654c8fd67
@ -56,8 +56,8 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
devRootTokenID = mkOption {
|
devRootTokenID = mkOption {
|
||||||
type = types.str;
|
type = types.nullOr types.str;
|
||||||
default = false;
|
default = null;
|
||||||
description = ''
|
description = ''
|
||||||
Initial root token. This only applies when {option}`services.vault.dev` is true
|
Initial root token. This only applies when {option}`services.vault.dev` is true
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user