marleyos/modules/darwin/programs/thunderbird.nix
2025-05-31 17:40:10 -07:00

13 lines
245 B
Nix

{
config,
lib,
...
}: let
cfg = config.marleyos.programs.thunderbird;
in {
options.marleyos.programs.thunderbird.enable = lib.mkEnableOption "thunderbird";
config = lib.mkIf cfg.enable {
homebrew.casks = ["thunderbird"];
};
}