nixos/hedgedoc: allow clientSecret to be null

This commit is contained in:
h7x4 2023-03-07 00:08:20 +01:00
parent 777a9707e7
commit 8c17fe986a
No known key found for this signature in database
GPG Key ID: 9F2F7D8250F35146

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.
'';