Main
This commit is contained in:
parent
fc0abdd4bb
commit
aca73cdd0f
73 changed files with 3873 additions and 381 deletions
23
Modules/Home/GUI-Apps/Office/Productivity/thunderbird.nix
Normal file
23
Modules/Home/GUI-Apps/Office/Productivity/thunderbird.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Thunderbird (email client)
|
||||
#
|
||||
# Provides:
|
||||
# - Thunderbird package via home.packages
|
||||
#
|
||||
# Notes:
|
||||
# - Simple module, just adds Thunderbird to the user environment
|
||||
#
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.nyx-module.home.thunderbird;
|
||||
in
|
||||
{
|
||||
options.nyx-module.home.thunderbird = {
|
||||
enable = lib.mkEnableOption "Enable Thunderbird (home module)";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [ pkgs.thunderbird ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue