2017-01-11 00:36:43 +01:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
2019-12-28 23:28:21 +01:00
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
|
|
2017-01-11 00:36:43 +01:00
|
|
|
|
cfg = config.programs.firefox;
|
|
|
|
|
|
2022-05-28 02:01:44 +02:00
|
|
|
|
jsonFormat = pkgs.formats.json { };
|
|
|
|
|
|
2019-12-28 23:28:21 +01:00
|
|
|
|
mozillaConfigPath =
|
2021-07-18 23:34:50 +02:00
|
|
|
|
if isDarwin then "Library/Application Support/Mozilla" else ".mozilla";
|
2019-12-28 23:28:21 +01:00
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
firefoxConfigPath = if isDarwin then
|
|
|
|
|
"Library/Application Support/Firefox"
|
|
|
|
|
else
|
|
|
|
|
"${mozillaConfigPath}/firefox";
|
2019-12-28 23:28:21 +01:00
|
|
|
|
|
|
|
|
|
profilesPath =
|
2021-07-18 23:34:50 +02:00
|
|
|
|
if isDarwin then "${firefoxConfigPath}/Profiles" else firefoxConfigPath;
|
2019-12-28 23:28:21 +01:00
|
|
|
|
|
2020-03-15 18:10:38 +01:00
|
|
|
|
# The extensions path shared by all profiles; will not be supported
|
|
|
|
|
# by future Firefox versions.
|
2019-03-11 00:55:32 +01:00
|
|
|
|
extensionPath = "extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}";
|
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
profiles = flip mapAttrs' cfg.profiles (_: profile:
|
|
|
|
|
nameValuePair "Profile${toString profile.id}" {
|
|
|
|
|
Name = profile.name;
|
|
|
|
|
Path = if isDarwin then "Profiles/${profile.path}" else profile.path;
|
|
|
|
|
IsRelative = 1;
|
|
|
|
|
Default = if profile.isDefault then 1 else 0;
|
|
|
|
|
}) // {
|
|
|
|
|
General = { StartWithLastProfile = 1; };
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
profilesIni = generators.toINI { } profiles;
|
2019-05-24 09:08:56 +02:00
|
|
|
|
|
2023-02-05 11:23:22 +01:00
|
|
|
|
userPrefValue = pref:
|
|
|
|
|
builtins.toJSON (if isBool pref || isInt pref || isString pref then
|
|
|
|
|
pref
|
|
|
|
|
else
|
|
|
|
|
builtins.toJSON pref);
|
|
|
|
|
|
2021-09-29 08:39:17 +02:00
|
|
|
|
mkUserJs = prefs: extraPrefs: bookmarks:
|
|
|
|
|
let
|
2022-06-20 16:58:26 +02:00
|
|
|
|
prefs' = lib.optionalAttrs ([ ] != bookmarks) {
|
2021-09-29 08:39:17 +02:00
|
|
|
|
"browser.bookmarks.file" = toString (firefoxBookmarksFile bookmarks);
|
|
|
|
|
"browser.places.importBookmarksHTML" = true;
|
|
|
|
|
} // prefs;
|
|
|
|
|
in ''
|
|
|
|
|
// Generated by Home Manager.
|
|
|
|
|
|
|
|
|
|
${concatStrings (mapAttrsToList (name: value: ''
|
2023-02-05 11:23:22 +01:00
|
|
|
|
user_pref("${name}", ${userPrefValue value});
|
2021-09-29 08:39:17 +02:00
|
|
|
|
'') prefs')}
|
|
|
|
|
|
|
|
|
|
${extraPrefs}
|
|
|
|
|
'';
|
2019-05-24 09:08:56 +02:00
|
|
|
|
|
2023-10-13 08:34:32 +02:00
|
|
|
|
mkContainersJson = containers:
|
|
|
|
|
let
|
|
|
|
|
containerToIdentity = _: container: {
|
|
|
|
|
userContextId = container.id;
|
|
|
|
|
name = container.name;
|
|
|
|
|
icon = container.icon;
|
|
|
|
|
color = container.color;
|
|
|
|
|
public = true;
|
|
|
|
|
};
|
|
|
|
|
in ''
|
|
|
|
|
${builtins.toJSON {
|
|
|
|
|
version = 4;
|
|
|
|
|
lastUserContextId =
|
|
|
|
|
elemAt (mapAttrsToList (_: container: container.id) containers) 0;
|
|
|
|
|
identities = mapAttrsToList containerToIdentity containers;
|
|
|
|
|
}}
|
|
|
|
|
'';
|
|
|
|
|
|
2021-09-29 08:39:17 +02:00
|
|
|
|
firefoxBookmarksFile = bookmarks:
|
|
|
|
|
let
|
2022-06-20 16:58:26 +02:00
|
|
|
|
indent = level:
|
|
|
|
|
lib.concatStringsSep "" (map (lib.const " ") (lib.range 1 level));
|
|
|
|
|
|
|
|
|
|
bookmarkToHTML = indentLevel: bookmark:
|
|
|
|
|
''
|
|
|
|
|
${indent indentLevel}<DT><A HREF="${
|
|
|
|
|
escapeXML bookmark.url
|
2023-10-04 21:08:09 +02:00
|
|
|
|
}" ADD_DATE="1" LAST_MODIFIED="1"${
|
2022-06-20 16:58:26 +02:00
|
|
|
|
lib.optionalString (bookmark.keyword != null)
|
|
|
|
|
" SHORTCUTURL=\"${escapeXML bookmark.keyword}\""
|
2023-05-04 16:58:13 +02:00
|
|
|
|
}${
|
|
|
|
|
lib.optionalString (bookmark.tags != [ ])
|
|
|
|
|
" TAGS=\"${escapeXML (concatStringsSep "," bookmark.tags)}\""
|
2022-06-20 16:58:26 +02:00
|
|
|
|
}>${escapeXML bookmark.name}</A>'';
|
|
|
|
|
|
|
|
|
|
directoryToHTML = indentLevel: directory: ''
|
2022-07-22 15:32:45 +02:00
|
|
|
|
${indent indentLevel}<DT>${
|
|
|
|
|
if directory.toolbar then
|
|
|
|
|
''<H3 PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Toolbar''
|
|
|
|
|
else
|
|
|
|
|
"<H3>${escapeXML directory.name}"
|
|
|
|
|
}</H3>
|
2022-06-20 16:58:26 +02:00
|
|
|
|
${indent indentLevel}<DL><p>
|
|
|
|
|
${allItemsToHTML (indentLevel + 1) directory.bookmarks}
|
|
|
|
|
${indent indentLevel}</p></DL>'';
|
|
|
|
|
|
|
|
|
|
itemToHTMLOrRecurse = indentLevel: item:
|
|
|
|
|
if item ? "url" then
|
|
|
|
|
bookmarkToHTML indentLevel item
|
|
|
|
|
else
|
|
|
|
|
directoryToHTML indentLevel item;
|
|
|
|
|
|
|
|
|
|
allItemsToHTML = indentLevel: bookmarks:
|
|
|
|
|
lib.concatStringsSep "\n"
|
|
|
|
|
(map (itemToHTMLOrRecurse indentLevel) bookmarks);
|
|
|
|
|
|
2022-07-21 22:52:47 +02:00
|
|
|
|
bookmarkEntries = allItemsToHTML 1 bookmarks;
|
2021-09-29 08:39:17 +02:00
|
|
|
|
in pkgs.writeText "firefox-bookmarks.html" ''
|
|
|
|
|
<!DOCTYPE NETSCAPE-Bookmark-file-1>
|
|
|
|
|
<!-- This is an automatically generated file.
|
|
|
|
|
It will be read and overwritten.
|
|
|
|
|
DO NOT EDIT! -->
|
|
|
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
|
|
|
|
|
<TITLE>Bookmarks</TITLE>
|
|
|
|
|
<H1>Bookmarks Menu</H1>
|
|
|
|
|
<DL><p>
|
2022-06-20 16:58:26 +02:00
|
|
|
|
${bookmarkEntries}
|
2021-09-29 08:39:17 +02:00
|
|
|
|
</p></DL>
|
|
|
|
|
'';
|
2019-05-24 09:08:56 +02:00
|
|
|
|
|
2023-10-11 08:47:17 +02:00
|
|
|
|
mkNoDuplicateAssertion = entities: entityKind:
|
|
|
|
|
(let
|
|
|
|
|
# Return an attribute set with entity IDs as keys and a list of
|
|
|
|
|
# entity names with corresponding ID as value. An ID is present in
|
|
|
|
|
# the result only if more than one entity has it. The argument
|
|
|
|
|
# entities is a list of AttrSet of one id/name pair.
|
|
|
|
|
findDuplicateIds = entities:
|
|
|
|
|
filterAttrs (_entityId: entityNames: length entityNames != 1)
|
|
|
|
|
(zipAttrs entities);
|
|
|
|
|
|
|
|
|
|
duplicates = findDuplicateIds (mapAttrsToList
|
|
|
|
|
(entityName: entity: { "${toString entity.id}" = entityName; })
|
|
|
|
|
entities);
|
|
|
|
|
|
|
|
|
|
mkMsg = entityId: entityNames:
|
|
|
|
|
" - ID ${entityId} is used by " + concatStringsSep ", " entityNames;
|
|
|
|
|
in {
|
|
|
|
|
assertion = duplicates == { };
|
|
|
|
|
message = ''
|
|
|
|
|
Must not have a Firefox ${entityKind} with an existing ID but
|
|
|
|
|
'' + concatStringsSep "\n" (mapAttrsToList mkMsg duplicates);
|
|
|
|
|
});
|
|
|
|
|
|
2023-11-01 21:36:40 +01:00
|
|
|
|
wrapPackage = package:
|
|
|
|
|
let
|
|
|
|
|
# The configuration expected by the Firefox wrapper.
|
|
|
|
|
fcfg = { enableGnomeExtensions = cfg.enableGnomeExtensions; };
|
|
|
|
|
|
|
|
|
|
# A bit of hackery to force a config into the wrapper.
|
|
|
|
|
browserName =
|
|
|
|
|
package.browserName or (builtins.parseDrvName package.name).name;
|
|
|
|
|
|
|
|
|
|
# The configuration expected by the Firefox wrapper builder.
|
|
|
|
|
bcfg = setAttrByPath [ browserName ] fcfg;
|
|
|
|
|
|
|
|
|
|
in if package == null then
|
|
|
|
|
null
|
|
|
|
|
else if isDarwin then
|
|
|
|
|
package
|
|
|
|
|
else if versionAtLeast config.home.stateVersion "19.09" then
|
|
|
|
|
package.override (old: { cfg = old.cfg or { } // fcfg; })
|
|
|
|
|
else
|
|
|
|
|
(pkgs.wrapFirefox.override { config = bcfg; }) package { };
|
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
in {
|
2022-05-28 02:01:44 +02:00
|
|
|
|
meta.maintainers = [ maintainers.rycee maintainers.kira-bruneau ];
|
2017-09-26 23:40:31 +02:00
|
|
|
|
|
2020-04-18 11:21:24 +02:00
|
|
|
|
imports = [
|
2023-02-05 23:53:25 +01:00
|
|
|
|
(mkRemovedOptionModule [ "programs" "firefox" "extensions" ] ''
|
|
|
|
|
|
|
|
|
|
Extensions are now managed per-profile. That is, change from
|
|
|
|
|
|
|
|
|
|
programs.firefox.extensions = [ foo bar ];
|
|
|
|
|
|
|
|
|
|
to
|
|
|
|
|
|
|
|
|
|
programs.firefox.profiles.myprofile.extensions = [ foo bar ];'')
|
2021-07-18 23:34:50 +02:00
|
|
|
|
(mkRemovedOptionModule [ "programs" "firefox" "enableAdobeFlash" ]
|
2021-02-09 05:37:24 +01:00
|
|
|
|
"Support for this option has been removed.")
|
2021-07-18 23:34:50 +02:00
|
|
|
|
(mkRemovedOptionModule [ "programs" "firefox" "enableGoogleTalk" ]
|
2020-04-18 11:21:24 +02:00
|
|
|
|
"Support for this option has been removed.")
|
2021-07-18 23:34:50 +02:00
|
|
|
|
(mkRemovedOptionModule [ "programs" "firefox" "enableIcedTea" ]
|
2020-04-18 11:21:24 +02:00
|
|
|
|
"Support for this option has been removed.")
|
|
|
|
|
];
|
|
|
|
|
|
2017-01-11 00:36:43 +01:00
|
|
|
|
options = {
|
|
|
|
|
programs.firefox = {
|
2023-07-02 01:45:18 +02:00
|
|
|
|
enable = mkEnableOption "Firefox";
|
2017-01-11 00:36:43 +01:00
|
|
|
|
|
|
|
|
|
package = mkOption {
|
2023-07-25 18:49:12 +02:00
|
|
|
|
type = with types; nullOr package;
|
2021-07-18 23:34:50 +02:00
|
|
|
|
default = if versionAtLeast config.home.stateVersion "19.09" then
|
|
|
|
|
pkgs.firefox
|
|
|
|
|
else
|
|
|
|
|
pkgs.firefox-unwrapped;
|
2021-10-09 11:14:08 +02:00
|
|
|
|
defaultText = literalExpression "pkgs.firefox";
|
|
|
|
|
example = literalExpression ''
|
2021-05-14 21:06:54 +02:00
|
|
|
|
pkgs.firefox.override {
|
|
|
|
|
# See nixpkgs' firefox/wrapper.nix to check which options you can use
|
|
|
|
|
cfg = {
|
|
|
|
|
# Gnome shell native connector
|
|
|
|
|
enableGnomeExtensions = true;
|
|
|
|
|
# Tridactyl native connector
|
|
|
|
|
enableTridactylNative = true;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2019-08-18 10:57:30 +02:00
|
|
|
|
The Firefox package to use. If state version ≥ 19.09 then
|
|
|
|
|
this should be a wrapped Firefox package. For earlier state
|
|
|
|
|
versions it should be an unwrapped Firefox package.
|
2023-11-12 01:07:50 +01:00
|
|
|
|
Set to `null` to disable installing Firefox.
|
2019-08-18 10:57:30 +02:00
|
|
|
|
'';
|
2017-01-11 00:36:43 +01:00
|
|
|
|
};
|
|
|
|
|
|
2023-11-01 21:36:40 +01:00
|
|
|
|
finalPackage = mkOption {
|
|
|
|
|
type = with types; nullOr package;
|
|
|
|
|
readOnly = true;
|
|
|
|
|
description = "Resulting Firefox package.";
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-24 09:08:56 +02:00
|
|
|
|
profiles = mkOption {
|
2021-07-18 23:34:50 +02:00
|
|
|
|
type = types.attrsOf (types.submodule ({ config, name, ... }: {
|
2019-05-24 09:08:56 +02:00
|
|
|
|
options = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = name;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Profile name.";
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
id = mkOption {
|
|
|
|
|
type = types.ints.unsigned;
|
|
|
|
|
default = 0;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2019-05-24 09:08:56 +02:00
|
|
|
|
Profile ID. This should be set to a unique number per profile.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
settings = mkOption {
|
2023-02-05 11:23:22 +01:00
|
|
|
|
type = types.attrsOf (jsonFormat.type // {
|
|
|
|
|
description =
|
|
|
|
|
"Firefox preference (int, bool, string, and also attrs, list, float as a JSON string)";
|
|
|
|
|
});
|
2021-07-18 23:34:50 +02:00
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
|
example = literalExpression ''
|
2019-05-24 09:08:56 +02:00
|
|
|
|
{
|
|
|
|
|
"browser.startup.homepage" = "https://nixos.org";
|
|
|
|
|
"browser.search.region" = "GB";
|
|
|
|
|
"browser.search.isUS" = false;
|
|
|
|
|
"distribution.searchplugins.defaultLocale" = "en-GB";
|
|
|
|
|
"general.useragent.locale" = "en-GB";
|
|
|
|
|
"browser.bookmarks.showMobileBookmarks" = true;
|
2023-02-05 11:23:22 +01:00
|
|
|
|
"browser.newtabpage.pinned" = [{
|
|
|
|
|
title = "NixOS";
|
|
|
|
|
url = "https://nixos.org";
|
|
|
|
|
}];
|
2019-05-24 09:08:56 +02:00
|
|
|
|
}
|
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2023-02-05 11:23:22 +01:00
|
|
|
|
Attribute set of Firefox preferences.
|
|
|
|
|
|
|
|
|
|
Firefox only supports int, bool, and string types for
|
|
|
|
|
preferences, but home-manager will automatically
|
|
|
|
|
convert all other JSON-compatible values into strings.
|
|
|
|
|
'';
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
|
Extra preferences to add to {file}`user.js`.
|
2019-05-24 09:08:56 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
userChrome = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Custom Firefox user chrome CSS.";
|
2019-05-24 09:08:56 +02:00
|
|
|
|
example = ''
|
|
|
|
|
/* Hide tab bar in FF Quantum */
|
|
|
|
|
@-moz-document url("chrome://browser/content/browser.xul") {
|
|
|
|
|
#TabsToolbar {
|
|
|
|
|
visibility: collapse !important;
|
|
|
|
|
margin-bottom: 21px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
|
|
|
|
|
visibility: collapse !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-09 07:39:37 +01:00
|
|
|
|
userContent = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Custom Firefox user content CSS.";
|
2020-03-09 07:39:37 +01:00
|
|
|
|
example = ''
|
|
|
|
|
/* Hide scrollbar in FF Quantum */
|
|
|
|
|
*{scrollbar-width:none !important}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2021-09-29 08:39:17 +02:00
|
|
|
|
bookmarks = mkOption {
|
2022-06-20 16:58:26 +02:00
|
|
|
|
type = let
|
|
|
|
|
bookmarkSubmodule = types.submodule ({ config, name, ... }: {
|
|
|
|
|
options = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = name;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Bookmark name.";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-05-04 16:58:13 +02:00
|
|
|
|
tags = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = [ ];
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Bookmark tags.";
|
2023-05-04 16:58:13 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-06-20 16:58:26 +02:00
|
|
|
|
keyword = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Bookmark search keyword.";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
url = mkOption {
|
|
|
|
|
type = types.str;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Bookmark url, use %s for search terms.";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
};
|
2021-09-29 08:39:17 +02:00
|
|
|
|
};
|
2022-06-20 16:58:26 +02:00
|
|
|
|
}) // {
|
|
|
|
|
description = "bookmark submodule";
|
|
|
|
|
};
|
2021-09-29 08:39:17 +02:00
|
|
|
|
|
2022-06-20 16:58:26 +02:00
|
|
|
|
bookmarkType = types.addCheck bookmarkSubmodule (x: x ? "url");
|
|
|
|
|
|
|
|
|
|
directoryType = types.submodule ({ config, name, ... }: {
|
|
|
|
|
options = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = name;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Directory name.";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
bookmarks = mkOption {
|
2022-08-27 03:28:57 +02:00
|
|
|
|
type = types.listOf nodeType;
|
2022-06-20 16:58:26 +02:00
|
|
|
|
default = [ ];
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Bookmarks within directory.";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
};
|
2022-07-22 15:32:45 +02:00
|
|
|
|
|
|
|
|
|
toolbar = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "If directory should be shown in toolbar.";
|
2022-07-22 15:32:45 +02:00
|
|
|
|
};
|
2021-09-29 08:39:17 +02:00
|
|
|
|
};
|
2022-06-20 16:58:26 +02:00
|
|
|
|
}) // {
|
|
|
|
|
description = "directory submodule";
|
2021-09-29 08:39:17 +02:00
|
|
|
|
};
|
2022-07-21 22:52:47 +02:00
|
|
|
|
|
|
|
|
|
nodeType = types.either bookmarkType directoryType;
|
2022-06-20 16:58:26 +02:00
|
|
|
|
in with types;
|
2022-07-21 22:52:47 +02:00
|
|
|
|
coercedTo (attrsOf nodeType) attrValues (listOf nodeType);
|
2022-06-20 16:58:26 +02:00
|
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
|
example = literalExpression ''
|
2022-06-20 16:58:26 +02:00
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
name = "wikipedia";
|
2023-05-04 16:58:13 +02:00
|
|
|
|
tags = [ "wiki" ];
|
2021-09-29 08:39:17 +02:00
|
|
|
|
keyword = "wiki";
|
|
|
|
|
url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "kernel.org";
|
2021-09-29 08:39:17 +02:00
|
|
|
|
url = "https://www.kernel.org";
|
2022-06-20 16:58:26 +02:00
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "Nix sites";
|
2023-04-19 15:04:40 +02:00
|
|
|
|
toolbar = true;
|
2022-06-20 16:58:26 +02:00
|
|
|
|
bookmarks = [
|
|
|
|
|
{
|
|
|
|
|
name = "homepage";
|
|
|
|
|
url = "https://nixos.org/";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "wiki";
|
2023-05-04 16:58:13 +02:00
|
|
|
|
tags = [ "wiki" "nix" ];
|
2022-06-20 16:58:26 +02:00
|
|
|
|
url = "https://nixos.wiki/";
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-09-29 08:39:17 +02:00
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2021-09-29 08:39:17 +02:00
|
|
|
|
Preloaded bookmarks. Note, this may silently overwrite any
|
|
|
|
|
previously existing bookmarks!
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-24 09:08:56 +02:00
|
|
|
|
path = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = name;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Profile path.";
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
isDefault = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = config.id == 0;
|
|
|
|
|
defaultText = "true if profile ID is 0";
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Whether this is a default profile.";
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
2022-05-28 02:01:44 +02:00
|
|
|
|
|
|
|
|
|
search = {
|
|
|
|
|
force = mkOption {
|
|
|
|
|
type = with types; bool;
|
|
|
|
|
default = false;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2022-05-28 02:01:44 +02:00
|
|
|
|
Whether to force replace the existing search
|
|
|
|
|
configuration. This is recommended since Firefox will
|
|
|
|
|
replace the symlink for the search configuration on every
|
|
|
|
|
launch, but note that you'll lose any existing
|
|
|
|
|
configuration by enabling this.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
default = mkOption {
|
|
|
|
|
type = with types; nullOr str;
|
|
|
|
|
default = null;
|
|
|
|
|
example = "DuckDuckGo";
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2022-05-28 02:01:44 +02:00
|
|
|
|
The default search engine used in the address bar and search bar.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2023-11-12 11:11:12 +01:00
|
|
|
|
privateDefault = mkOption {
|
|
|
|
|
type = with types; nullOr str;
|
|
|
|
|
default = null;
|
|
|
|
|
example = "DuckDuckGo";
|
|
|
|
|
description = ''
|
|
|
|
|
The default search engine used in the Private Browsing.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2022-05-28 02:01:44 +02:00
|
|
|
|
order = mkOption {
|
|
|
|
|
type = with types; uniq (listOf str);
|
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ "DuckDuckGo" "Google" ];
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2022-05-28 02:01:44 +02:00
|
|
|
|
The order the search engines are listed in. Any engines
|
|
|
|
|
that aren't included in this list will be listed after
|
|
|
|
|
these in an unspecified order.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
engines = mkOption {
|
|
|
|
|
type = with types; attrsOf (attrsOf jsonFormat.type);
|
|
|
|
|
default = { };
|
|
|
|
|
example = literalExpression ''
|
|
|
|
|
{
|
|
|
|
|
"Nix Packages" = {
|
|
|
|
|
urls = [{
|
|
|
|
|
template = "https://search.nixos.org/packages";
|
|
|
|
|
params = [
|
|
|
|
|
{ name = "type"; value = "packages"; }
|
|
|
|
|
{ name = "query"; value = "{searchTerms}"; }
|
|
|
|
|
];
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
|
|
|
|
definedAliases = [ "@np" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
"NixOS Wiki" = {
|
|
|
|
|
urls = [{ template = "https://nixos.wiki/index.php?search={searchTerms}"; }];
|
|
|
|
|
iconUpdateURL = "https://nixos.wiki/favicon.png";
|
|
|
|
|
updateInterval = 24 * 60 * 60 * 1000; # every day
|
|
|
|
|
definedAliases = [ "@nw" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
"Bing".metaData.hidden = true;
|
|
|
|
|
"Google".metaData.alias = "@g"; # builtin engines only support specifying one additional alias
|
|
|
|
|
}
|
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2022-05-28 02:01:44 +02:00
|
|
|
|
Attribute set of search engine configurations. Engines
|
2023-07-01 01:30:13 +02:00
|
|
|
|
that only have {var}`metaData` specified will
|
2022-05-28 02:01:44 +02:00
|
|
|
|
be treated as builtin to Firefox.
|
2023-07-01 01:30:13 +02:00
|
|
|
|
|
|
|
|
|
See [SearchEngine.jsm](https://searchfox.org/mozilla-central/rev/669329e284f8e8e2bb28090617192ca9b4ef3380/toolkit/components/search/SearchEngine.jsm#1138-1177)
|
2022-05-28 02:01:44 +02:00
|
|
|
|
in Firefox's source for available options. We maintain a
|
|
|
|
|
mapping to let you specify all options in the referenced
|
|
|
|
|
link without underscores, but it may fall out of date with
|
|
|
|
|
future options.
|
2023-07-01 01:30:13 +02:00
|
|
|
|
|
|
|
|
|
Note, {var}`icon` is also a special option
|
2022-05-28 02:01:44 +02:00
|
|
|
|
added by Home Manager to make it convenient to specify
|
|
|
|
|
absolute icon paths.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-02-05 23:53:25 +01:00
|
|
|
|
|
2023-10-13 08:34:32 +02:00
|
|
|
|
containers = mkOption {
|
|
|
|
|
type = types.attrsOf (types.submodule ({ name, ... }: {
|
|
|
|
|
options = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = name;
|
|
|
|
|
description = "Container name, e.g., shopping.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
id = mkOption {
|
|
|
|
|
type = types.ints.unsigned;
|
|
|
|
|
default = 0;
|
|
|
|
|
description = ''
|
|
|
|
|
Container ID. This should be set to a unique number per container in this profile.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# List of colors at
|
|
|
|
|
# https://searchfox.org/mozilla-central/rev/5ad226c7379b0564c76dc3b54b44985356f94c5a/toolkit/components/extensions/parent/ext-contextualIdentities.js#32
|
|
|
|
|
color = mkOption {
|
|
|
|
|
type = types.enum [
|
|
|
|
|
"blue"
|
|
|
|
|
"turquoise"
|
|
|
|
|
"green"
|
|
|
|
|
"yellow"
|
|
|
|
|
"orange"
|
|
|
|
|
"red"
|
|
|
|
|
"pink"
|
|
|
|
|
"purple"
|
|
|
|
|
"toolbar"
|
|
|
|
|
];
|
|
|
|
|
default = "pink";
|
|
|
|
|
description = "Container color.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
icon = mkOption {
|
|
|
|
|
type = types.enum [
|
|
|
|
|
"briefcase"
|
|
|
|
|
"cart"
|
|
|
|
|
"circle"
|
|
|
|
|
"dollar"
|
|
|
|
|
"fence"
|
|
|
|
|
"fingerprint"
|
|
|
|
|
"gift"
|
|
|
|
|
"vacation"
|
|
|
|
|
"food"
|
|
|
|
|
"fruit"
|
|
|
|
|
"pet"
|
|
|
|
|
"tree"
|
|
|
|
|
"chill"
|
|
|
|
|
];
|
|
|
|
|
default = "fruit";
|
|
|
|
|
description = "Container icon.";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}));
|
|
|
|
|
default = { };
|
|
|
|
|
example = {
|
|
|
|
|
"shopping" = {
|
|
|
|
|
id = 1;
|
|
|
|
|
color = "blue";
|
|
|
|
|
icon = "cart";
|
|
|
|
|
};
|
|
|
|
|
"dangerous" = {
|
|
|
|
|
id = 2;
|
|
|
|
|
color = "red";
|
|
|
|
|
icon = "fruit";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
description = ''
|
|
|
|
|
Attribute set of container configurations. See
|
|
|
|
|
[Multi-Account
|
|
|
|
|
Containers](https://support.mozilla.org/en-US/kb/containers)
|
|
|
|
|
for more information.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-05 23:53:25 +01:00
|
|
|
|
extensions = mkOption {
|
|
|
|
|
type = types.listOf types.package;
|
|
|
|
|
default = [ ];
|
|
|
|
|
example = literalExpression ''
|
|
|
|
|
with pkgs.nur.repos.rycee.firefox-addons; [
|
|
|
|
|
privacy-badger
|
|
|
|
|
]
|
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2023-02-05 23:53:25 +01:00
|
|
|
|
List of Firefox add-on packages to install for this profile.
|
2023-07-01 00:35:51 +02:00
|
|
|
|
Some pre-packaged add-ons are accessible from the
|
|
|
|
|
[Nix User Repository](https://github.com/nix-community/NUR).
|
2023-02-05 23:53:25 +01:00
|
|
|
|
Once you have NUR installed run
|
|
|
|
|
|
2023-07-01 00:35:51 +02:00
|
|
|
|
```console
|
|
|
|
|
$ nix-env -f '<nixpkgs>' -qaP -A nur.repos.rycee.firefox-addons
|
|
|
|
|
```
|
2023-02-05 23:53:25 +01:00
|
|
|
|
|
|
|
|
|
to list the available Firefox add-ons.
|
|
|
|
|
|
|
|
|
|
Note that it is necessary to manually enable these extensions
|
|
|
|
|
inside Firefox after the first installation.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
|
|
|
|
}));
|
2021-07-18 23:34:50 +02:00
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = "Attribute set of Firefox profiles.";
|
2019-05-24 09:08:56 +02:00
|
|
|
|
};
|
|
|
|
|
|
2020-10-19 15:37:49 +02:00
|
|
|
|
enableGnomeExtensions = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2020-10-20 00:28:52 +02:00
|
|
|
|
Whether to enable the GNOME Shell native host connector. Note, you
|
|
|
|
|
also need to set the NixOS option
|
2023-07-01 01:30:13 +02:00
|
|
|
|
`services.gnome.gnome-browser-connector.enable` to
|
|
|
|
|
`true`.
|
2020-10-19 15:37:49 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2017-01-11 00:36:43 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-05-24 09:08:56 +02:00
|
|
|
|
assertions = [
|
2021-07-18 23:34:50 +02:00
|
|
|
|
(let
|
|
|
|
|
defaults =
|
|
|
|
|
catAttrs "name" (filter (a: a.isDefault) (attrValues cfg.profiles));
|
|
|
|
|
in {
|
|
|
|
|
assertion = cfg.profiles == { } || length defaults == 1;
|
|
|
|
|
message = "Must have exactly one default Firefox profile but found "
|
|
|
|
|
+ toString (length defaults) + optionalString (length defaults > 1)
|
|
|
|
|
(", namely " + concatStringsSep ", " defaults);
|
|
|
|
|
})
|
|
|
|
|
|
2023-10-11 08:47:17 +02:00
|
|
|
|
(mkNoDuplicateAssertion cfg.profiles "profile")
|
2023-10-13 08:34:32 +02:00
|
|
|
|
] ++ (mapAttrsToList
|
|
|
|
|
(_: profile: mkNoDuplicateAssertion profile.containers "container")
|
|
|
|
|
cfg.profiles);
|
2019-05-24 09:08:56 +02:00
|
|
|
|
|
2021-05-14 21:06:54 +02:00
|
|
|
|
warnings = optional (cfg.enableGnomeExtensions or false) ''
|
|
|
|
|
Using 'programs.firefox.enableGnomeExtensions' has been deprecated and
|
|
|
|
|
will be removed in the future. Please change to overriding the package
|
|
|
|
|
configuration using 'programs.firefox.package' instead. You can refer to
|
|
|
|
|
its example for how to do this.
|
|
|
|
|
'';
|
|
|
|
|
|
2023-11-01 21:36:40 +01:00
|
|
|
|
programs.firefox.finalPackage = wrapPackage cfg.package;
|
2021-07-18 23:34:50 +02:00
|
|
|
|
|
2023-11-01 21:36:40 +01:00
|
|
|
|
home.packages = lib.optional (cfg.finalPackage != null) cfg.finalPackage;
|
2021-07-18 23:34:50 +02:00
|
|
|
|
|
|
|
|
|
home.file = mkMerge ([{
|
|
|
|
|
"${firefoxConfigPath}/profiles.ini" =
|
|
|
|
|
mkIf (cfg.profiles != { }) { text = profilesIni; };
|
|
|
|
|
}] ++ flip mapAttrsToList cfg.profiles (_: profile: {
|
|
|
|
|
"${profilesPath}/${profile.path}/.keep".text = "";
|
2021-05-24 17:28:12 +02:00
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
"${profilesPath}/${profile.path}/chrome/userChrome.css" =
|
|
|
|
|
mkIf (profile.userChrome != "") { text = profile.userChrome; };
|
2019-05-24 09:08:56 +02:00
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
"${profilesPath}/${profile.path}/chrome/userContent.css" =
|
|
|
|
|
mkIf (profile.userContent != "") { text = profile.userContent; };
|
2020-03-09 07:39:37 +01:00
|
|
|
|
|
2021-12-02 04:21:41 +01:00
|
|
|
|
"${profilesPath}/${profile.path}/user.js" = mkIf (profile.settings != { }
|
2022-07-21 22:54:59 +02:00
|
|
|
|
|| profile.extraConfig != "" || profile.bookmarks != [ ]) {
|
2021-09-29 08:39:17 +02:00
|
|
|
|
text =
|
|
|
|
|
mkUserJs profile.settings profile.extraConfig profile.bookmarks;
|
2021-07-18 23:34:50 +02:00
|
|
|
|
};
|
2020-03-15 18:10:38 +01:00
|
|
|
|
|
2023-10-13 08:34:32 +02:00
|
|
|
|
"${profilesPath}/${profile.path}/containers.json" =
|
|
|
|
|
mkIf (profile.containers != { }) {
|
|
|
|
|
text = mkContainersJson profile.containers;
|
|
|
|
|
};
|
|
|
|
|
|
2022-05-28 02:01:44 +02:00
|
|
|
|
"${profilesPath}/${profile.path}/search.json.mozlz4" = mkIf
|
2023-11-12 11:11:12 +01:00
|
|
|
|
(profile.search.default != null || profile.search.privateDefault != null
|
|
|
|
|
|| profile.search.order != [ ] || profile.search.engines != { }) {
|
2022-05-28 02:01:44 +02:00
|
|
|
|
force = profile.search.force;
|
|
|
|
|
source = let
|
|
|
|
|
settings = {
|
|
|
|
|
version = 6;
|
|
|
|
|
engines = let
|
2023-01-07 00:38:09 +01:00
|
|
|
|
# Map of nice field names to internal field names.
|
|
|
|
|
# This is intended to be exhaustive and should be
|
|
|
|
|
# updated at every version bump.
|
|
|
|
|
internalFieldNames = (genAttrs [
|
|
|
|
|
"name"
|
|
|
|
|
"isAppProvided"
|
|
|
|
|
"loadPath"
|
|
|
|
|
"hasPreferredIcon"
|
|
|
|
|
"updateInterval"
|
|
|
|
|
"updateURL"
|
|
|
|
|
"iconUpdateURL"
|
|
|
|
|
"iconURL"
|
|
|
|
|
"iconMapObj"
|
|
|
|
|
"metaData"
|
|
|
|
|
"orderHint"
|
|
|
|
|
"definedAliases"
|
|
|
|
|
"urls"
|
|
|
|
|
] (name: "_${name}")) // {
|
|
|
|
|
searchForm = "__searchForm";
|
|
|
|
|
};
|
2022-05-28 02:01:44 +02:00
|
|
|
|
|
2023-01-07 00:38:09 +01:00
|
|
|
|
processCustomEngineInput = input:
|
|
|
|
|
(removeAttrs input [ "icon" ])
|
|
|
|
|
// optionalAttrs (input ? icon) {
|
|
|
|
|
# Convenience to specify absolute path to icon
|
|
|
|
|
iconURL = "file://${input.icon}";
|
|
|
|
|
} // (optionalAttrs (input ? iconUpdateURL) {
|
|
|
|
|
# Convenience to default iconURL to iconUpdateURL so
|
|
|
|
|
# the icon is immediately downloaded from the URL
|
|
|
|
|
iconURL = input.iconURL or input.iconUpdateURL;
|
|
|
|
|
} // {
|
|
|
|
|
# Required for custom engine configurations, loadPaths
|
|
|
|
|
# are unique identifiers that are generally formatted
|
|
|
|
|
# like: [source]/path/to/engine.xml
|
|
|
|
|
loadPath = ''
|
|
|
|
|
[home-manager]/programs.firefox.profiles.${profile.name}.search.engines."${
|
|
|
|
|
replaceStrings [ "\\" ] [ "\\\\" ] input.name
|
|
|
|
|
}"'';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
processEngineInput = name: input:
|
|
|
|
|
let
|
|
|
|
|
requiredInput = {
|
|
|
|
|
inherit name;
|
|
|
|
|
isAppProvided = input.isAppProvided or removeAttrs input
|
|
|
|
|
[ "metaData" ] == { };
|
|
|
|
|
metaData = input.metaData or { };
|
|
|
|
|
};
|
|
|
|
|
in if requiredInput.isAppProvided then
|
|
|
|
|
requiredInput
|
|
|
|
|
else
|
|
|
|
|
processCustomEngineInput (input // requiredInput);
|
|
|
|
|
|
|
|
|
|
buildEngineConfig = name: input:
|
|
|
|
|
mapAttrs' (name: value: {
|
|
|
|
|
name = internalFieldNames.${name} or name;
|
2022-05-28 02:01:44 +02:00
|
|
|
|
inherit value;
|
2023-01-07 00:38:09 +01:00
|
|
|
|
}) (processEngineInput name input);
|
|
|
|
|
|
|
|
|
|
sortEngineConfigs = configs:
|
|
|
|
|
let
|
|
|
|
|
buildEngineConfigWithOrder = order: name:
|
|
|
|
|
let
|
|
|
|
|
config = configs.${name} or {
|
|
|
|
|
_name = name;
|
|
|
|
|
_isAppProvided = true;
|
|
|
|
|
_metaData = { };
|
|
|
|
|
};
|
|
|
|
|
in config // {
|
|
|
|
|
_metaData = config._metaData // { inherit order; };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
engineConfigsWithoutOrder =
|
|
|
|
|
attrValues (removeAttrs configs profile.search.order);
|
|
|
|
|
|
|
|
|
|
sortedEngineConfigs =
|
|
|
|
|
(imap buildEngineConfigWithOrder profile.search.order)
|
|
|
|
|
++ engineConfigsWithoutOrder;
|
|
|
|
|
in sortedEngineConfigs;
|
|
|
|
|
|
|
|
|
|
engineInput = profile.search.engines // {
|
|
|
|
|
# Infer profile.search.default as an app provided
|
|
|
|
|
# engine if it's not in profile.search.engines
|
|
|
|
|
${profile.search.default} =
|
|
|
|
|
profile.search.engines.${profile.search.default} or { };
|
2023-11-12 11:11:12 +01:00
|
|
|
|
} // {
|
|
|
|
|
${profile.search.privateDefault} =
|
|
|
|
|
profile.search.engines.${profile.search.privateDefault} or { };
|
2023-01-07 00:38:09 +01:00
|
|
|
|
};
|
|
|
|
|
in sortEngineConfigs (mapAttrs buildEngineConfig engineInput);
|
2022-05-28 02:01:44 +02:00
|
|
|
|
|
|
|
|
|
metaData = optionalAttrs (profile.search.default != null) {
|
|
|
|
|
current = profile.search.default;
|
|
|
|
|
hash = "@hash@";
|
2023-11-12 11:11:12 +01:00
|
|
|
|
} // optionalAttrs (profile.search.privateDefault != null) {
|
|
|
|
|
private = profile.search.privateDefault;
|
|
|
|
|
privateHash = "@privateHash@";
|
2022-05-28 02:01:44 +02:00
|
|
|
|
} // {
|
|
|
|
|
useSavedOrder = profile.search.order != [ ];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Home Manager doesn't circumvent user consent and isn't acting
|
|
|
|
|
# maliciously. We're modifying the search outside of Firefox, but
|
|
|
|
|
# a claim by Mozilla to remove this would be very anti-user, and
|
|
|
|
|
# is unlikely to be an issue for our use case.
|
|
|
|
|
disclaimer = appName:
|
|
|
|
|
"By modifying this file, I agree that I am doing so "
|
|
|
|
|
+ "only within ${appName} itself, using official, user-driven search "
|
|
|
|
|
+ "engine selection processes, and in a way which does not circumvent "
|
|
|
|
|
+ "user consent. I acknowledge that any attempt to change this file "
|
|
|
|
|
+ "from outside of ${appName} is a malicious act, and will be responded "
|
|
|
|
|
+ "to accordingly.";
|
|
|
|
|
|
2023-01-07 01:13:13 +01:00
|
|
|
|
salt = if profile.search.default != null then
|
|
|
|
|
profile.path + profile.search.default + disclaimer "Firefox"
|
|
|
|
|
else
|
|
|
|
|
null;
|
2023-11-12 11:11:12 +01:00
|
|
|
|
|
|
|
|
|
privateSalt = if profile.search.privateDefault != null then
|
|
|
|
|
profile.path + profile.search.privateDefault
|
|
|
|
|
+ disclaimer "Firefox"
|
|
|
|
|
else
|
|
|
|
|
null;
|
2022-05-28 02:01:44 +02:00
|
|
|
|
in pkgs.runCommand "search.json.mozlz4" {
|
|
|
|
|
nativeBuildInputs = with pkgs; [ mozlz4a openssl ];
|
|
|
|
|
json = builtins.toJSON settings;
|
2023-11-12 11:11:12 +01:00
|
|
|
|
inherit salt privateSalt;
|
2022-05-28 02:01:44 +02:00
|
|
|
|
} ''
|
2023-01-07 01:13:13 +01:00
|
|
|
|
if [[ -n $salt ]]; then
|
|
|
|
|
export hash=$(echo -n "$salt" | openssl dgst -sha256 -binary | base64)
|
2023-11-12 11:11:12 +01:00
|
|
|
|
export privateHash=$(echo -n "$privateSalt" | openssl dgst -sha256 -binary | base64)
|
|
|
|
|
mozlz4a <(substituteStream json search.json.in --subst-var hash --subst-var privateHash) "$out"
|
2023-01-07 01:13:13 +01:00
|
|
|
|
else
|
|
|
|
|
mozlz4a <(echo "$json") "$out"
|
|
|
|
|
fi
|
2022-05-28 02:01:44 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
|
"${profilesPath}/${profile.path}/extensions" =
|
2023-02-05 23:53:25 +01:00
|
|
|
|
mkIf (profile.extensions != [ ]) {
|
|
|
|
|
source = let
|
|
|
|
|
extensionsEnvPkg = pkgs.buildEnv {
|
|
|
|
|
name = "hm-firefox-extensions";
|
|
|
|
|
paths = profile.extensions;
|
|
|
|
|
};
|
|
|
|
|
in "${extensionsEnvPkg}/share/mozilla/${extensionPath}";
|
2020-03-15 18:10:38 +01:00
|
|
|
|
recursive = true;
|
2020-03-17 22:37:06 +01:00
|
|
|
|
force = true;
|
2020-03-15 18:10:38 +01:00
|
|
|
|
};
|
2021-07-18 23:34:50 +02:00
|
|
|
|
}));
|
2017-01-11 00:36:43 +01:00
|
|
|
|
};
|
|
|
|
|
}
|