Merge pull request #26081 from nocoolnametom/update-znc

znc module: Fix error with bitlbee channel closing tag missing a newline

Changed files
+2 -1
nixos
modules
services
networking
+2 -1
nixos/modules/services/networking/znc.nix
···
Server = ${net.server} ${lib.optionalString net.useSSL "+"}${toString net.port} ${net.password}
${concatMapStrings (c: "<Chan #${c}>\n</Chan>\n") net.channels}
${lib.optionalString net.hasBitlbeeControlChannel ''
-
<Chan &bitlbee></Chan>
+
<Chan &bitlbee>
+
</Chan>
''}
${net.extraConf}
</Network>