1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-09 18:41:06 +01:00
home-manager/tests/modules/programs/thunderbird/thunderbird-with-firefox.nix
Austin Horstman 412eb166eb tests/thunderbird: dont use realPkgs
Not relevant for testing.
2025-04-18 15:56:09 -07:00

13 lines
263 B
Nix

# Confirm that both Firefox and Thunderbird can be configured at the same time.
{
config,
lib,
pkgs,
...
}:
lib.recursiveUpdate (import ./thunderbird.nix { inherit config lib pkgs; }) {
programs.firefox = {
enable = true;
package = null;
};
}