mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-09 18:41:06 +01:00
13 lines
263 B
Nix
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;
|
|
};
|
|
}
|