mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
firefox: use wrapped package
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.
This commit is contained in:
parent
c2429ca0cf
commit
73641e492c
7 changed files with 99 additions and 12 deletions
|
|
@ -35,6 +35,7 @@ import nmt {
|
|||
}
|
||||
// import ./modules/misc/pam
|
||||
// import ./modules/misc/xsession
|
||||
// import ./modules/programs/firefox
|
||||
// import ./modules/systemd
|
||||
)
|
||||
// import ./modules/home-environment
|
||||
|
|
|
|||
4
tests/modules/programs/firefox/default.nix
Normal file
4
tests/modules/programs/firefox/default.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
firefox-profile-settings = ./profile-settings.nix;
|
||||
firefox-state-version-19_09 = ./state-version-19_09.nix;
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
// Generated by Home Manager.
|
||||
|
||||
user_pref("general.smoothScroll", false);
|
||||
|
||||
|
||||
|
||||
24
tests/modules/programs/firefox/profile-settings.nix
Normal file
24
tests/modules/programs/firefox/profile-settings.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ 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}
|
||||
'';
|
||||
};
|
||||
}
|
||||
17
tests/modules/programs/firefox/state-version-19_09.nix
Normal file
17
tests/modules/programs/firefox/state-version-19_09.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
config = {
|
||||
home.stateVersion = "19.09";
|
||||
|
||||
programs.firefox.enable = true;
|
||||
|
||||
nmt.script = ''
|
||||
assertFileRegex \
|
||||
home-path/bin/firefox \
|
||||
MOZ_APP_LAUNCHER
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue