about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2024-05-06 14:05:17 -0400
committerBernardo Meurer <bernardo@meurer.org>2024-05-06 14:05:17 -0400
commit7c87bee77b8ab8a22dafa973e7be3b6329a97e9e (patch)
treec2300738c3c59488de579e4fcfabe246226d8d38 /nixos
parent5aa69d78d833a1c38dd0c87043579aa0f5216c56 (diff)
nixos/oauth2-proxy: fix missing `lib.`
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/security/oauth2-proxy.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/security/oauth2-proxy.nix b/nixos/modules/services/security/oauth2-proxy.nix
index 075e64b743b1e..78a772845a352 100644
--- a/nixos/modules/services/security/oauth2-proxy.nix
+++ b/nixos/modules/services/security/oauth2-proxy.nix
@@ -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;