1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-06 16:57:03 +00:00

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;