mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
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:
parent
04b544137c
commit
4265f4354c
@ -483,7 +483,7 @@ let
|
||||
|
||||
listeners = mkOption {
|
||||
type = listOf listenerOptions;
|
||||
default = {};
|
||||
default = [];
|
||||
description = ''
|
||||
Listeners to configure on this broker.
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user