diff --git a/modules/programs/firefox.nix b/modules/programs/firefox.nix index 1a8454916..e1594a946 100644 --- a/modules/programs/firefox.nix +++ b/modules/programs/firefox.nix @@ -49,13 +49,33 @@ in enableGoogleTalk = mkOption { type = types.bool; default = false; - description = "Whether to enable the unfree Google Talk plugin."; + description = '' + Whether to enable the unfree Google Talk plugin. This option + is deprecated and will only work if + + + programs.firefox.package = pkgs.firefox-esr-52-unwrapped; + + + and the Firefox + option has been disabled. + ''; }; enableIcedTea = mkOption { type = types.bool; default = false; - description = "Whether to enable the Java applet plugin."; + description = '' + Whether to enable the Java applet plugin. This option is + deprecated and will only work if + + + programs.firefox.package = pkgs.firefox-esr-52-unwrapped; + + + and the Firefox + option has been disabled. + ''; }; }; };