From 1c01774e614ddf637ee6e50e0708e8042a2c5db0 Mon Sep 17 00:00:00 2001 From: Enno Richter Date: Tue, 8 Oct 2024 16:25:00 +0200 Subject: [PATCH] nixos/oauth2-proxy: fix display-htpasswd-form flag name --- nixos/modules/services/security/oauth2-proxy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/security/oauth2-proxy.nix b/nixos/modules/services/security/oauth2-proxy.nix index a897f04ea633..38da06e1538a 100644 --- a/nixos/modules/services/security/oauth2-proxy.nix +++ b/nixos/modules/services/security/oauth2-proxy.nix @@ -62,7 +62,7 @@ let } // lib.optionalAttrs (cfg.passBasicAuth) { basic-auth-password = cfg.basicAuthPassword; } // lib.optionalAttrs (cfg.htpasswd.file != null) { - display-htpasswd-file = cfg.htpasswd.displayForm; + display-htpasswd-form = cfg.htpasswd.displayForm; } // lib.optionalAttrs tls.enable { tls-cert-file = tls.certificate; tls-key-file = tls.key;