1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-19 23:03:01 +00:00
home-manager/tests/modules/programs/firefox/multiple-derivatives.nix
Ihar Hrachyshka 7f9ba30a28 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>
2025-02-22 17:38:43 -08:00

16 lines
260 B
Nix

{ 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;
};
}