nixcfg/homeManagerModules/guiApps/thunderbird/default.nix

13 lines
228 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 {
2024-04-07 23:54:15 -04:00
home.packages = [pkgs.thunderbird];
2024-04-07 23:39:09 -04:00
};
}