1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-11 11:17:03 +00:00
home-manager/tests/modules/programs/thunderbird/thunderbird-with-firefox.nix
Ihar Hrachyshka e5e485e73c thunderbird: separate test case for firefox+thunderbird setup
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
2025-02-21 09:28:22 -08:00

5 lines
215 B
Nix

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