1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

tests: check that all firefox derivatives can be installed

The issue itself was resolved with:
https://github.com/nix-community/home-manager/pull/6460

This patch only adds a test case to make sure we don't ever regress by
installing firefox and librewolf and floorp at the same time.

Closes: #6467

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
Ihar Hrachyshka 2025-02-21 19:47:08 -05:00 committed by Austin Horstman
parent fb568d75cf
commit 7f9ba30a28
3 changed files with 18 additions and 0 deletions

View file

@ -288,6 +288,7 @@ in import nmtSrc {
./modules/programs/boxxy
./modules/programs/cavalier
./modules/programs/eww
./modules/programs/firefox
./modules/programs/firefox/firefox.nix
./modules/programs/firefox/floorp.nix
./modules/programs/foot

View file

@ -0,0 +1 @@
{ "firefox-multiple-derivatives" = ./multiple-derivatives.nix; }

View file

@ -0,0 +1,16 @@
{ config, lib, ... }:
lib.mkIf config.test.enableBig {
programs.firefox = {
enable = true;
package = null;
};
programs.floorp = {
enable = true;
package = null;
};
programs.librewolf = {
enable = true;
package = null;
};
}