From df1422e9a4b07ce96130396207f6553a4df1cf7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Sat, 30 Aug 2025 14:50:21 -0400 Subject: [PATCH] nixos/listmonk: fix db settings type --- nixos/modules/services/mail/listmonk.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/mail/listmonk.nix b/nixos/modules/services/mail/listmonk.nix index 5732467db1bf..fdc06b884eb2 100644 --- a/nixos/modules/services/mail/listmonk.nix +++ b/nixos/modules/services/mail/listmonk.nix @@ -36,13 +36,13 @@ let ''; databaseSettingsOpts = with lib.types; { - freeformType = oneOf [ + freeformType = attrsOf (oneOf [ (listOf str) (listOf (attrsOf anything)) str int bool - ]; + ]); options = { "app.notify_emails" = lib.mkOption {