mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
73641e492c
This makes the programs.firefox.package option take a pre-wrapped Firefox package as value if state version is set to "19.09" or later. This should make the Firefox module work with a wider range of Firefox packages.
24 lines
432 B
Nix
24 lines
432 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.firefox = {
|
|
enable = true;
|
|
profiles.test.settings = {
|
|
"general.smoothScroll" = false;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileRegex \
|
|
home-path/bin/firefox \
|
|
MOZ_APP_LAUNCHER
|
|
|
|
assertFileContent \
|
|
home-files/.mozilla/firefox/test/user.js \
|
|
${./profile-settings-expected-user.js}
|
|
'';
|
|
};
|
|
}
|