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

6 lines
215 B
Nix
Raw Normal View History

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