2019-08-18 10:57:30 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
2021-05-24 17:28:12 +02:00
|
|
|
profiles.basic.isDefault = true;
|
|
|
|
|
|
|
|
profiles.test = {
|
|
|
|
id = 1;
|
|
|
|
settings = { "general.smoothScroll" = false; };
|
|
|
|
};
|
2021-09-29 08:39:17 +02:00
|
|
|
|
|
|
|
profiles.bookmarks = {
|
|
|
|
id = 2;
|
|
|
|
settings = { "general.smoothScroll" = false; };
|
|
|
|
bookmarks = {
|
|
|
|
wikipedia = {
|
|
|
|
keyword = "wiki";
|
|
|
|
url =
|
|
|
|
"https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
|
|
|
|
};
|
|
|
|
"kernel.org" = { url = "https://www.kernel.org"; };
|
|
|
|
};
|
|
|
|
};
|
2019-08-18 10:57:30 +02:00
|
|
|
};
|
|
|
|
|
2019-10-08 22:46:27 +02:00
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: super: {
|
2020-02-02 00:39:17 +01:00
|
|
|
firefox-unwrapped = pkgs.runCommand "firefox-0" {
|
|
|
|
meta.description = "I pretend to be Firefox";
|
|
|
|
preferLocalBuild = true;
|
|
|
|
allowSubstitutes = false;
|
2021-07-18 20:29:00 +02:00
|
|
|
passthru.gtk3 = null;
|
2020-02-02 00:39:17 +01:00
|
|
|
} ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
touch "$out/bin/firefox"
|
|
|
|
chmod 755 "$out/bin/firefox"
|
|
|
|
'';
|
2019-10-08 22:46:27 +02:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-08-18 10:57:30 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileRegex \
|
|
|
|
home-path/bin/firefox \
|
|
|
|
MOZ_APP_LAUNCHER
|
|
|
|
|
2021-05-24 17:28:12 +02:00
|
|
|
assertDirectoryExists home-files/.mozilla/firefox/basic
|
|
|
|
|
2019-08-18 10:57:30 +02:00
|
|
|
assertFileContent \
|
|
|
|
home-files/.mozilla/firefox/test/user.js \
|
|
|
|
${./profile-settings-expected-user.js}
|
2021-09-29 08:39:17 +02:00
|
|
|
|
|
|
|
bookmarksUserJs=$(normalizeStorePaths \
|
|
|
|
home-files/.mozilla/firefox/bookmarks/user.js)
|
|
|
|
|
|
|
|
assertFileContent \
|
|
|
|
$bookmarksUserJs \
|
|
|
|
${./profile-settings-expected-bookmarks-user.js}
|
|
|
|
|
|
|
|
bookmarksFile="$(sed -n \
|
|
|
|
'/browser.bookmarks.file/ {s|^.*\(/nix/store[^"]*\).*|\1|;p}' \
|
|
|
|
$TESTED/home-files/.mozilla/firefox/bookmarks/user.js)"
|
|
|
|
|
|
|
|
assertFileContent \
|
|
|
|
$bookmarksFile \
|
|
|
|
${./profile-settings-expected-bookmarks.html}
|
2019-08-18 10:57:30 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|