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