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:
@@ -483,7 +483,7 @@ let
|
||||
|
||||
listeners = mkOption {
|
||||
type = listOf listenerOptions;
|
||||
default = {};
|
||||
default = [];
|
||||
description = ''
|
||||
Listeners to configure on this broker.
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user