mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-06 16:57:03 +00:00
thunderbird: separate test case for firefox+thunderbird setup
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
parent
7e81c581a5
commit
e5e485e73c
3 changed files with 9 additions and 4 deletions
|
@ -1 +1,4 @@
|
|||
{ thunderbird = ./thunderbird.nix; }
|
||||
{
|
||||
thunderbird = ./thunderbird.nix;
|
||||
thunderbird-with-firefox = ./thunderbird-with-firefox.nix;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
# 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;
|
||||
}
|
|
@ -37,9 +37,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Confirm that both Firefox and Thunderbird can be configured at the same time.
|
||||
programs.firefox = { enable = true; };
|
||||
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue