1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-03 16:39:46 +01:00
home-manager/tests/modules/programs/firefox/profile-settings.nix
Robert Helgesson dff5f07952
tests: reduce number of downloads
This replaces some derivation outputs by simple strings rather than
full Nix store paths. This removes the need to download the whole
derivation when all we need is a static string.

(cherry picked from commit 797c77a00a)
2019-10-29 23:11:09 +01:00

42 lines
888 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.firefox = {
enable = true;
profiles.test.settings = {
"general.smoothScroll" = false;
};
};
nixpkgs.overlays = [
(self: super: {
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"
'';
})
];
nmt.script = ''
assertFileRegex \
home-path/bin/firefox \
MOZ_APP_LAUNCHER
assertFileContent \
home-files/.mozilla/firefox/test/user.js \
${./profile-settings-expected-user.js}
'';
};
}