mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
thunderbird: separate test case for firefox+thunderbird setup
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
committed by
Austin Horstman
parent
7e81c581a5
commit
e5e485e73c
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user