From 4265f4354cd5325f08fc617697190a653307020e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Thu, 8 Aug 2024 23:59:36 +0200 Subject: [PATCH] nixos/mosquitto: fix "listeners" option default The option type is listOf, so the default should be an empty list, not empty attrset. --- nixos/modules/services/networking/mosquitto.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/mosquitto.nix b/nixos/modules/services/networking/mosquitto.nix index 1137c61df9a0..468f58b56bb1 100644 --- a/nixos/modules/services/networking/mosquitto.nix +++ b/nixos/modules/services/networking/mosquitto.nix @@ -483,7 +483,7 @@ let listeners = mkOption { type = listOf listenerOptions; - default = {}; + default = []; description = '' Listeners to configure on this broker. '';