nixos/modules/common/applications/thunderbird.nix

19 lines
380 B
Nix
Raw Normal View History

2024-05-26 13:07:54 -04:00
{ config, pkgs, lib, ... }:
{
options = {
thunderbird = {
enable = lib.mkEnableOption {
description = "Enable Thunderbird";
default = false;
};
};
};
config = lib.mkIf (config.gui.enable && config.thunderbird.enable) {
home-manager.users.${config.user} = {
programs.thunderbird = {
enable = true;
};
};
};
}