From 6ec00ed3889d217b32f6a93b9de9f14b098927f7 Mon Sep 17 00:00:00 2001 From: dai Date: Sat, 10 Jan 2026 16:28:36 +0100 Subject: [PATCH] nixos/oauth2-proxy: document new options as alternatives to `keyFile` Co-authored-by: Sandro --- nixos/modules/services/security/oauth2-proxy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/security/oauth2-proxy.nix b/nixos/modules/services/security/oauth2-proxy.nix index 954ba7485535..452c61b60b54 100644 --- a/nixos/modules/services/security/oauth2-proxy.nix +++ b/nixos/modules/services/security/oauth2-proxy.nix @@ -187,7 +187,7 @@ in type = lib.types.nullOr lib.types.path; default = null; description = '' - Alternative to `clientSecret`: path to a file containing the OAuth Client Secret. + Alternative to `clientSecret` and `keyFile`: path to a file containing the OAuth Client Secret. ''; example = "/run/keys/oauth2-client-secret"; }; @@ -445,7 +445,7 @@ in type = lib.types.nullOr lib.types.path; default = null; description = '' - Alternative to `secret`: path to a file containing the cookie secret. + Alternative to `secret` and `keyFile`: path to a file containing the cookie secret. ''; example = "/run/keys/oauth2-cookie-secret"; };