nixos/home/modules/programs/thunderbird.nix

25 lines
416 B
Nix
Raw Normal View History

2025-01-26 15:06:26 +08:00
{
config,
lib,
...
}: let
cfg = config.youthlic.programs.thunderbird;
in {
2025-01-26 15:06:26 +08:00
options = {
youthlic.programs.thunderbird = {
enable = lib.mkEnableOption "thunderbird";
};
};
config = lib.mkIf cfg.enable {
programs.thunderbird = {
enable = true;
profiles = {
default = {
withExternalGnupg = true;
isDefault = true;
};
};
};
};
}