2019-08-18 10:57:30 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
2020-02-02 00:39:17 +01:00
|
|
|
profiles.test.settings = { "general.smoothScroll" = false; };
|
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;
|
|
|
|
} ''
|
|
|
|
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
|
|
|
|
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.mozilla/firefox/test/user.js \
|
|
|
|
${./profile-settings-expected-user.js}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|