nixos/mosquitto: fix "listeners" option default

The option type is listOf, so the default should be an empty list, not
empty attrset.
This commit is contained in:
Bjørn Forsman 2024-08-08 23:59:36 +02:00
parent 04b544137c
commit 4265f4354c

View File

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