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