librewolf: use mkFirefoxModule
This commit is contained in:
parent
792757f643
commit
a0ba4158d9
|
@ -14,20 +14,33 @@ let
|
||||||
'') prefs)}
|
'') prefs)}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
modulePath = [ "programs" "librewolf" ];
|
||||||
|
|
||||||
|
mkFirefoxModule = import ./firefox/mkFirefoxModule.nix;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
meta.maintainers = [ maintainers.onny ];
|
meta.maintainers = [ maintainers.chayleaf maintainers.onny ];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
(mkFirefoxModule {
|
||||||
|
inherit modulePath;
|
||||||
|
name = "LibreWolf";
|
||||||
|
wrappedPackageName = "librewolf";
|
||||||
|
unwrappedPackageName = "librewolf-unwrapped";
|
||||||
|
visible = true;
|
||||||
|
|
||||||
|
platforms.linux = {
|
||||||
|
vendorPath = ".librewolf";
|
||||||
|
configPath = ".librewolf";
|
||||||
|
};
|
||||||
|
platforms.darwin = {
|
||||||
|
vendorPath = "Library/Application Support/LibreWolf";
|
||||||
|
configPath = "Library/Application Support/LibreWolf";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
options.programs.librewolf = {
|
options.programs.librewolf = {
|
||||||
enable =
|
|
||||||
mkEnableOption "Librewolf browser, a privacy enhanced Firefox fork";
|
|
||||||
|
|
||||||
package = mkOption {
|
|
||||||
type = types.package;
|
|
||||||
default = pkgs.librewolf;
|
|
||||||
defaultText = literalExpression "pkgs.librewolf";
|
|
||||||
description = "The LibreWolf package to use.";
|
|
||||||
};
|
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
type = with types; attrsOf (either bool (either int str));
|
type = with types; attrsOf (either bool (either int str));
|
||||||
default = { };
|
default = { };
|
||||||
|
@ -38,7 +51,7 @@ in {
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
Attribute set of LibreWolf settings and overrides. Refer to
|
Attribute set of global LibreWolf settings and overrides. Refer to
|
||||||
<https://librewolf.net/docs/settings/>
|
<https://librewolf.net/docs/settings/>
|
||||||
for details on supported values.
|
for details on supported values.
|
||||||
'';
|
'';
|
||||||
|
@ -53,7 +66,8 @@ in {
|
||||||
|
|
||||||
home.packages = [ cfg.package ];
|
home.packages = [ cfg.package ];
|
||||||
|
|
||||||
home.file.".librewolf/librewolf.overrides.cfg".text =
|
home.file.".librewolf/librewolf.overrides.cfg" = lib.mkIf (cfg.settings != { }) {
|
||||||
mkOverridesFile cfg.settings;
|
text = mkOverridesFile cfg.settings;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue