24 lines
428 B
Nix
24 lines
428 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.marleyos.programs.thunderbird;
|
||
|
in {
|
||
|
options.marleyos.programs.thunderbird.enable = lib.mkEnableOption "thunderbird";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
programs.thunderbird = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
"privacy.donottrackheader.enabled" = true;
|
||
|
};
|
||
|
|
||
|
profiles."${config.marleyos.my.name}" = {
|
||
|
isDefault = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|