mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 03:43:55 -05:00
13 lines
233 B
Nix
13 lines
233 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {guiApps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";};
|
|
|
|
config = lib.mkIf config.guiApps.thunderbird.enable {
|
|
programs.thunderbird = {enable = true;};
|
|
};
|
|
}
|