From 770ba36ffcf6aec809acd63903e25fabbd02397e Mon Sep 17 00:00:00 2001 From: fi Date: Sun, 18 Jan 2026 17:19:30 +0100 Subject: [PATCH] Remove invalid password complexity setting in MAS config Should be a value between 0 and 4. Default is 3. --- config/hosts/matrix/matrix-authentication-service.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/hosts/matrix/matrix-authentication-service.nix b/config/hosts/matrix/matrix-authentication-service.nix index 53674ad..3e307f7 100644 --- a/config/hosts/matrix/matrix-authentication-service.nix +++ b/config/hosts/matrix/matrix-authentication-service.nix @@ -63,8 +63,7 @@ let version = 2; algorithm = "argon2id"; } - ]; - minimum_complexity = 8; + ]; }; }; masSettingsFile = ((pkgs.formats.yaml { }).generate "mas-config" masSettings);