mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2026-02-04 10:45:38 -05:00
Adding Very Basic Thunderbird Config
This commit is contained in:
parent
e61807a592
commit
fcded54d58
4 changed files with 26 additions and 4 deletions
18
modules/common/applications/thunderbird.nix
Normal file
18
modules/common/applications/thunderbird.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
options = {
|
||||
thunderbird = {
|
||||
enable = lib.mkEnableOption {
|
||||
description = "Enable Thunderbird";
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
config = lib.mkIf (config.gui.enable && config.thunderbird.enable) {
|
||||
home-manager.users.${config.user} = {
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue