Skip to content

Commit

Permalink
nixos/oauth2-proxy: fix missing lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
lovesegfault committed May 6, 2024
1 parent 5aa69d7 commit 7c87bee
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 7c87bee

Please sign in to comment.