nixcfg/homeManagerModules/guiApps/thunderbird/default.nix

13 lines
233 B
Nix
Raw Normal View History

2024-04-07 23:39:09 -04:00
{
pkgs,
lib,
config,
...
}: {
options = {guiApps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";};
config = lib.mkIf config.guiApps.thunderbird.enable {
programs.thunderbird = {enable = true;};
};
}