mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 02:39:48 +01:00
firefox: add enableIcedTea option
This commit is contained in:
parent
0f43d5df6a
commit
b78b2b6b35
1 changed files with 7 additions and 0 deletions
|
@ -33,6 +33,12 @@ in
|
|||
default = false;
|
||||
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] {
|
||||
enableAdobeFlash = cfg.enableAdobeFlash;
|
||||
enableGoogleTalkPlugin = cfg.enableGoogleTalk;
|
||||
icedtea = cfg.enableIcedTea;
|
||||
};
|
||||
|
||||
wrapper = pkgs.wrapFirefox.override {
|
||||
|
|
Loading…
Reference in a new issue