nixos/portunus: fix typo in option usage

This commit is contained in:
xeals 2022-08-27 17:39:29 +10:00
parent 0079deac1f
commit 5a9b7f4514
No known key found for this signature in database
GPG key ID: A498C7AF27EC6B5C

View file

@ -212,7 +212,7 @@ in
staticClients = forEach cfg.dex.oidcClients (client: {
inherit (client) id;
redirectURIs = [ client.callbackURI ];
redirectURIs = [ client.callbackURL ];
name = "OIDC for ${client.id}";
secret = "$DEX_CLIENT_${client.id}";
});