Merge pull request #220068 from h7x4/hedgedoc-allow-nullable-client-secret

nixos/hedgedoc: allow `clientSecret` to be null
This commit is contained in:
Pol Dellaiera 2023-06-05 21:54:02 +02:00 committed by GitHub
commit cc47c2189f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -624,7 +624,8 @@ in
'';
};
clientSecret = mkOption {
type = types.str;
type = with types; nullOr str;
default = null;
description = lib.mdDoc ''
Specify the OAuth client secret.
'';