1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
# vim: ts=2
{
config,
pkgs,
lib,
stdenv,
generate_extensions,
user_js,
system,
...
}: let
bookmarks = [
{
name = "Feed - Piped";
url = "https://piped.video/feed";
}
{
name = "DeepL Translate";
url = "https://www.deepl.com/translator#en/de/test";
}
];
firefoxBookmarksFile = bookmarks: let
indent = level:
lib.concatStringsSep "" (map (lib.const " ") (lib.range 1 level));
bookmarkToHTML = indentLevel: bookmark: ''
${indent indentLevel}<DT><A HREF="${
lib.escapeXML bookmark.url
}" ADD_DATE="0" LAST_MODIFIED="0">${lib.escapeXML bookmark.name}</A>'';
directoryToHTML = indentLevel: directory: ''
${indent indentLevel}<DT>${
if directory.toolbar
then ''<H3 PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Toolbar''
else "<H3>${lib.escapeXML directory.name}"
}</H3>
${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);
bookmarkEntries = allItemsToHTML 1 bookmarks;
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>
<DT><H3 ADD_DATE="0" LAST_MODIFIED="0" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Toolbar</H3>
<DL><p>
${bookmarkEntries}
</DL><p>
</p></DL>
'';
userChrome = builtins.readFile ./chrome/userChrome.css;
user_js_override = pkgs.writeText "user.override.js" (builtins.readFile ./settings/override.js);
user_js_nix = pkgs.runCommand "user.js" {} ''
mkdir $out;
cat "${user_js}/user.js" > $out/user.js;
cat "${user_js_override}" >> $out/user.js;
cat << EOF >> $out/user.js;
// My bookmarks
user_pref("browser.bookmarks.file", "${toString (firefoxBookmarksFile bookmarks)}");
user_pref("browser.places.importBookmarksHTML", true);
// Allow my custom css
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
// might improve performance TODO
user_pref("gfx.webrender.all", true);
// disable updates (pretty pointless with nix)
user_pref("extensions.update.autoUpdateDefault", false);
user_pref("extensions.update.enabled", false);
user_pref("app.update.channel", "default");
user_pref("browser.ctrlTab.recentlyUsedOrder", false);
user_pref("browser.download.useDownloadDir", true);
user_pref("browser.download.dir", "${config.home.homeDirectory}/media/downloads");
user_pref("browser.download.folderList", 2); # TODO
user_pref("browser.download.viewableInternally.typeWasRegistered.svg", true);
user_pref("browser.download.viewableInternally.typeWasRegistered.webp", true);
user_pref("browser.download.viewableInternally.typeWasRegistered.xml", true);
// TODO what does this do?
user_pref("browser.search.widget.inNavBar", true);
user_pref("browser.shell.checkDefaultBrowser", false);
user_pref("browser.tabs.loadInBackground", true);
user_pref("browser.urlbar.placeholderName", "Brave");
user_pref("general.autoScroll", true);
// Set the tabs and bookmarks
user_pref("browser.tabs.inTitlebar", 1);
user_pref("browser.toolbars.bookmarks.visibility", "always");
// Theme
user_pref("extensions.activeThemeID", "firefox-alpenglow@mozilla.org");
user_pref("extensions.extensions.activeThemeID", "firefox-alpenglow@mozilla.org");
// highlight all entries when searching
user_pref("findbar.highlightAll", true);
// TODO
//user_pref("extensions.webcompat.enable_picture_in_picture_overrides", true);
//user_pref("extensions.webcompat.enable_shims", true);
//user_pref("extensions.webcompat.perform_injections", true);
//user_pref("extensions.webcompat.perform_ua_overrides", true);
// onlykey / copied from a yubikey config
//user_pref("security.webauth.u2f", true);
//user_pref("security.webauth.webauthn", true);
//user_pref("security.webauth.webauthn_enable_softtoken", true);
//user_pref("security.webauth.webauthn_enable_usbtoken", true);
EOF
'';
#"${strip_js_comments.app.${system}.default.program}" $out/user.js > $out/user_clean.js;
# echo "{" > $out/user.nix.tmp
# sed 's/user_pref(\(.*\)",\(.*\));/\1" = \2;/' $out/user_clean.js >> $out/user.nix.tmp;
# echo "}" >> $out/user.nix.tmp
# awk '!/"_user.js.parrot"/' $out/user.nix.tmp >> $out/user.nix; # delete duplicate keys
extensions = builtins.map buildFirefoxXpiAddon (
lib.attrValues (
lib.importJSON ./settings/extensions.json
)
);
# source: https://gitlab.com/rycee/nur-expressions/-/blob/master/pkgs/firefox-addons/default.nix
buildFirefoxXpiAddon = {
pname,
version,
addonId,
url,
sha256,
#meta,
...
}:
pkgs.stdenv.mkDerivation {
name = "${pname}-${version}";
#inherit meta;
src = builtins.fetchurl {inherit url sha256;};
preferLocalBuild = true;
allowSubstitutes = true;
buildCommand = ''
dst="$out/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
mkdir -p "$dst"
install -v -m644 "$src" "$dst/${addonId}.xpi"
'';
};
settings = {
};
in {
home.packages = [
pkgs.firefox-wayland
];
home.sessionVariables = {
# improve touch input & make scrolling smother
MOZ_USE_XINPUT2 = "1";
# improve wayland support
MOZ_ENABLE_WAYLAND = 1;
};
xdg.mimeApps = {
enable = true;
defaultApplications = {
"text/html" = ["firefox.desktop"];
"x-scheme-handler/http" = ["firefox.desktop"];
"x-scheme-handler/https" = ["firefox.desktop"];
"x-scheme-handler/about" = ["firefox.desktop"];
"x-scheme-handler/unknown" = ["firefox.desktop"];
};
};
programs.firefox = {
enable = true;
package = pkgs.firefox;
profiles."default" = {
inherit extensions;
isDefault = true;
id = 0;
name = "default";
inherit userChrome;
search = {
default = "Brave Search";
force = true;
engines = {
"Brave Search" = {
urls = [{template = "https://search.brave.com/search?q={searchTerms}";}];
iconUpdateURL = "https://raw.githubusercontent.com/brave/brave-core/master/components/brave_welcome_ui/components/images/lion_logo.svg";
updateInterval = 24; # every day
definedAliases = ["@bs"];
};
# NIX
"Nix Packages" = {
urls = [{template = "https://search.nixos.org/packages?type=packages&query={searchTerms}";}];
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = ["@np"];
};
"Nix Options" = {
urls = [{template = "https://search.nixos.org/options?type=options&query={searchTerms}";}];
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = ["@no"];
};
"NixOS Wiki" = {
urls = [{template = "https://nixos.wiki/index.php?search={searchTerms}";}];
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = ["@nw"];
};
"Arch Wiki" = {
urls = [{template = "https://wiki.archlinux.org/index.php?search={searchTerms}";}];
iconUpdateURL = "https://upload.wikimedia.org/wikipedia/commons/a/a5/Archlinux-icon-crystal-64.svg";
updateInterval = 24;
definedAliases = ["@aw"];
};
# RUST
"Rust std" = {
urls = [{template = "https://doc.rust-lang.org/std/?search={searchTerms}";}];
iconUpdateURL = "https://rustacean.net/assets/rustacean-orig-noshadow.svg";
updateInterval = 24;
definedAliases = ["@rs"];
};
"Google Scholar" = {
urls = [{template = "https://scholar.google.com/scholar?hl=en&q={searchTerms}";}];
iconUpdateURL = "https://scholar.google.com/favicon.ico";
updateInterval = 24;
definedAliases = ["@gs"];
};
"Wikipedia" = {
urls = [{template = "https://en.wikipedia.org/wiki/{searchTerms}";}];
iconUpdateURL = "https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg";
updateInterval = 24;
definedAliases = ["@wp"];
};
"Wikipedia (en)".metaData.hidden = true;
"DuckDuckGo".metaData.hidden = true;
"Bing".metaData.hidden = true;
"Google".metaData.hidden = true;
"Amazon.de".metaData.hidden = true;
};
};
bookmarks = [];
inherit settings;
extraConfig = builtins.readFile "${user_js_nix}/user.js";
};
};
}
|