home: fixed broken thunderbird option

This commit is contained in:
Aly Raffauf 2024-04-07 23:54:15 -04:00
parent 7a2120dded
commit 36fc9b1c50

View file

@ -7,6 +7,6 @@
options = {guiApps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";}; options = {guiApps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";};
config = lib.mkIf config.guiApps.thunderbird.enable { config = lib.mkIf config.guiApps.thunderbird.enable {
programs.thunderbird = {enable = true;}; home.packages = [pkgs.thunderbird];
}; };
} }