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:
|
channelString = concatStringsSep cnl (concatLists
|
||||||
concatStringsSep cnl (flip mapAttrsToList v.channels (c: cv: ''
|
(flip mapAttrsToList cfg.networks (k: v:
|
||||||
{
|
(flip mapAttrsToList v.channels (c: cv: ''
|
||||||
chatnet = "${k}";
|
{
|
||||||
name = "${c}";
|
chatnet = "${k}";
|
||||||
autojoin = "${boolStr cv.autoJoin}";
|
name = "${c}";
|
||||||
}
|
autojoin = "${boolStr cv.autoJoin}";
|
||||||
''))));
|
}
|
||||||
|
'')))));
|
||||||
|
|
||||||
channelType = types.submodule {
|
channelType = types.submodule {
|
||||||
options = {
|
options = {
|
||||||
|
|
Loading…
Reference in a new issue