-
-
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.
thunderbird: separate test case for firefox+thunderbird setup
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
- Loading branch information
1 parent
7e81c58
commit e5e485e
Showing
3 changed files
with
9 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
{ thunderbird = ./thunderbird.nix; } | ||
{ | ||
thunderbird = ./thunderbird.nix; | ||
thunderbird-with-firefox = ./thunderbird-with-firefox.nix; | ||
} |
5 changes: 5 additions & 0 deletions
5
tests/modules/programs/thunderbird/thunderbird-with-firefox.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,5 @@ | ||
# Confirm that both Firefox and Thunderbird can be configured at the same time. | ||
{ lib, realPkgs, ... }: | ||
lib.recursiveUpdate (import ./thunderbird.nix { inherit lib realPkgs; }) { | ||
programs.firefox.enable = true; | ||
} |
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