firefox: add enableIcedTea option
This commit is contained in:
parent
0f43d5df6a
commit
b78b2b6b35
|
@ -33,6 +33,12 @@ in
|
||||||
default = false;
|
default = false;
|
||||||
description = "Whether to enable the unfree Google Talk plugin.";
|
description = "Whether to enable the unfree Google Talk plugin.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enableIcedTea = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Whether to enable the Java applet plugin.";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -46,6 +52,7 @@ in
|
||||||
fcfg = setAttrByPath [browserName] {
|
fcfg = setAttrByPath [browserName] {
|
||||||
enableAdobeFlash = cfg.enableAdobeFlash;
|
enableAdobeFlash = cfg.enableAdobeFlash;
|
||||||
enableGoogleTalkPlugin = cfg.enableGoogleTalk;
|
enableGoogleTalkPlugin = cfg.enableGoogleTalk;
|
||||||
|
icedtea = cfg.enableIcedTea;
|
||||||
};
|
};
|
||||||
|
|
||||||
wrapper = pkgs.wrapFirefox.override {
|
wrapper = pkgs.wrapFirefox.override {
|
||||||
|
|
Loading…
Reference in a new issue