diff --git a/homeManagerModules/guiApps/thunderbird/default.nix b/homeManagerModules/guiApps/thunderbird/default.nix index cd28b28b..c364f03e 100644 --- a/homeManagerModules/guiApps/thunderbird/default.nix +++ b/homeManagerModules/guiApps/thunderbird/default.nix @@ -7,6 +7,6 @@ options = {guiApps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";}; config = lib.mkIf config.guiApps.thunderbird.enable { - programs.thunderbird = {enable = true;}; + home.packages = [pkgs.thunderbird]; }; }