Unverified Commit 836505de authored by xeals's avatar xeals
Browse files

nixos/portunus: fix specification of client secret

Environment variables are only expanded in *Env variables.

Ref dexidp/dex#1664
parent 5a9b7f45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ in
          inherit (client) id;
          redirectURIs = [ client.callbackURL ];
          name = "OIDC for ${client.id}";
          secret = "$DEX_CLIENT_${client.id}";
          secretEnv = "DEX_CLIENT_${client.id}";
        });
      };
    };