nixos/mosquitto: fix "listeners" option default

The option type is listOf, so the default should be an empty list, not
empty attrset.

(cherry picked from commit 4265f4354c)
This commit is contained in:
Bjørn Forsman 2024-08-08 23:59:36 +02:00
parent bf0f03d5b3
commit c8ab0eb08b

View File

@ -483,7 +483,7 @@ let
listeners = mkOption {
type = listOf listenerOptions;
default = {};
default = [];
description = ''
Listeners to configure on this broker.
'';