-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: check that all firefox derivatives can be installed
The issue itself was resolved with: #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>
- Loading branch information
1 parent
fb568d7
commit 7f9ba30
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ "firefox-multiple-derivatives" = ./multiple-derivatives.nix; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
}; | ||
} |