about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorScriptkiddi <fritz@otlinghaus.it>2021-02-01 17:43:01 +0100
committerCole Helbling <cole.e.helbling@outlook.com>2021-02-03 16:24:36 -0800
commit5ac119043d903a75575a055e9b6539ca2a452cff (patch)
tree39e85eed1d9bf2c90df71d4dd492934774b1b4dc /nixos/modules
parentd7ee2a16bd762c38eb97e6f8898b176a65d56fa9 (diff)
nixos/oauth2_proxy: add extraConfig type
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/security/oauth2_proxy.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/security/oauth2_proxy.nix b/nixos/modules/services/security/oauth2_proxy.nix
index 486f3ab05386d..77c579279abe5 100644
--- a/nixos/modules/services/security/oauth2_proxy.nix
+++ b/nixos/modules/services/security/oauth2_proxy.nix
@@ -538,6 +538,7 @@ in
 
     extraConfig = mkOption {
       default = {};
+      type = types.attrsOf types.anything;
       description = ''
         Extra config to pass to oauth2-proxy.
       '';