Skip to content

Commit 4265f43

Browse files
committed
nixos/mosquitto: fix "listeners" option default
The option type is listOf, so the default should be an empty list, not empty attrset.
1 parent 04b5441 commit 4265f43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/services/networking/mosquitto.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ let
483483

484484
listeners = mkOption {
485485
type = listOf listenerOptions;
486-
default = {};
486+
default = [];
487487
description = ''
488488
Listeners to configure on this broker.
489489
'';

0 commit comments

Comments
 (0)