mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
Instead, pick just the required packages to pass the tests. Note: we have to refer to real derivations because symlinkJoin assumes the passed derivation is a directory with files, otherwise it fails as: @thunderbird@: No such file or directory Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
9 lines
340 B
Nix
9 lines
340 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;
|
|
# Darwin doesn't support wrapped Firefox, using unwrapped instead
|
|
package = realPkgs.firefox-unwrapped;
|
|
};
|
|
}
|