irssi: fix syntax error when no channels are specified
(cherry picked from commit 5d4327cff4
)
This commit is contained in:
parent
47ae373e74
commit
a8d00f5c03
|
@ -44,14 +44,15 @@ let
|
|||
}
|
||||
''));
|
||||
|
||||
channelString = concatStringsSep cnl (flip mapAttrsToList cfg.networks (k: v:
|
||||
concatStringsSep cnl (flip mapAttrsToList v.channels (c: cv: ''
|
||||
channelString = concatStringsSep cnl (concatLists
|
||||
(flip mapAttrsToList cfg.networks (k: v:
|
||||
(flip mapAttrsToList v.channels (c: cv: ''
|
||||
{
|
||||
chatnet = "${k}";
|
||||
name = "${c}";
|
||||
autojoin = "${boolStr cv.autoJoin}";
|
||||
}
|
||||
''))));
|
||||
'')))));
|
||||
|
||||
channelType = types.submodule {
|
||||
options = {
|
||||
|
|
Loading…
Reference in a new issue