From 0c5116ee217b225212ba1044de3a9411e59a7720 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Sat, 14 Mar 2026 22:53:51 +0100 Subject: [PATCH] authelia: add info on secrets length --- modules/blocks/authelia.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/blocks/authelia.nix b/modules/blocks/authelia.nix index ee12ed9..b3e18c5 100644 --- a/modules/blocks/authelia.nix +++ b/modules/blocks/authelia.nix @@ -114,7 +114,7 @@ in }; }; storageEncryptionKey = lib.mkOption { - description = "Storage encryption key."; + description = "Storage encryption key. Must be >= 20 characters."; type = lib.types.submodule { options = shb.contracts.secret.mkRequester { mode = "0400"; @@ -124,7 +124,7 @@ in }; }; identityProvidersOIDCHMACSecret = lib.mkOption { - description = "Identity provider OIDC HMAC secret."; + description = "Identity provider OIDC HMAC secret. Must be >= 40 characters."; type = lib.types.submodule { options = shb.contracts.secret.mkRequester { mode = "0400";