{ config, lib, ... }: let cfg = config.hm.soft.email; in { options.hm.soft.email.thunderbird.enable = lib.mkEnableOption "thunderbird config"; config = lib.mkIf cfg.thunderbird.enable { programs.thunderbird = { enable = true; profiles.main = { isDefault = true; settings = { "network.proxy.type" = 0; }; }; }; }; }