thunderbird: separate test case for firefox+thunderbird setup

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
Ihar Hrachyshka
2025-02-17 22:16:34 -05:00
committed by Austin Horstman
parent 7e81c581a5
commit e5e485e73c
3 changed files with 9 additions and 4 deletions

View File

@@ -1 +1,4 @@
{ thunderbird = ./thunderbird.nix; }
{
thunderbird = ./thunderbird.nix;
thunderbird-with-firefox = ./thunderbird-with-firefox.nix;
}

View File

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

View File

@@ -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;