Skip to content

Commit

Permalink
Merge pull request #309611 from lovesegfault/fix-oauth2-proxy
Browse files Browse the repository at this point in the history
nixos/oauth2-proxy: fix missing `lib.`
  • Loading branch information
lovesegfault authored May 6, 2024
2 parents f571081 + 7c87bee commit 40da51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/security/oauth2-proxy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let
inherit (cfg.github) org team;
}; };

google = cfg: { google = with cfg.google; optionalAttrs (groups != []) {
google = cfg: { google = with cfg.google; lib.optionalAttrs (groups != []) {
admin-email = adminEmail;
service-account = serviceAccountJSON;
group = groups;
Expand Down

0 comments on commit 40da51f

Please sign in to comment.