Commit e654c8fd authored by Lynn's avatar Lynn
Browse files

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
parent 9f84a634
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
        '';