blob: 33c8f3426914819485002ab3554138db166f0ed8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ 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;
};
};
};
};
}
|