1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-25 07:58:31 +02:00

mbsync: remove unneeded extraConfig.channel

This was originally placed here, seemingly, just to get this module
working. However, this field is actually more confusing now that a
separate per-channel configuration option for extra configurations has
been made available.
This commit is contained in:
Karl Hallsby 2020-06-27 02:23:30 +02:00
parent fb3c246fe0
commit 941c4771ca

View File

@ -174,20 +174,6 @@ in {
'';
};
extraConfig.channel = mkOption {
type = extraConfigType;
default = { };
example = literalExample ''
{
MaxMessages = 10000;
MaxSize = "1m";
};
'';
description = ''
Per channel extra configuration.
'';
};
extraConfig.local = mkOption {
type = extraConfigType;
default = { };