mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
5 lines
215 B
Nix
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;
|
|
}
|