nixcfg/homeManagerModules/guiApps/thunderbird/default.nix
2024-04-07 23:54:15 -04:00

13 lines
228 B
Nix

{
pkgs,
lib,
config,
...
}: {
options = {guiApps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";};
config = lib.mkIf config.guiApps.thunderbird.enable {
home.packages = [pkgs.thunderbird];
};
}