Skip to content

Commit

Permalink
thunderbird: separate test case for firefox+thunderbird setup
Browse files Browse the repository at this point in the history
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
  • Loading branch information
booxter authored and khaneliman committed Feb 21, 2025
1 parent 7e81c58 commit e5e485e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion tests/modules/programs/thunderbird/default.nix
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;
}
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;
}
3 changes: 0 additions & 3 deletions tests/modules/programs/thunderbird/thunderbird.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
};
};

# Confirm that both Firefox and Thunderbird can be configured at the same time.
programs.firefox = { enable = true; };

programs.thunderbird = {
enable = true;

Expand Down

0 comments on commit e5e485e

Please sign in to comment.