nixos/listmonk: fix db settings type (#438700)

This commit is contained in:
Felix Bühler
2025-09-02 22:43:17 +02:00
committed by GitHub
+2 -2
View File
@@ -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 {