Adding Very Basic Thunderbird Config

This commit is contained in:
Annika Merris 2024-05-26 13:07:54 -04:00
parent e61807a592
commit fcded54d58
4 changed files with 26 additions and 4 deletions

View file

@ -0,0 +1,18 @@
{ 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;
};
};
};
}