18 lines
316 B
Nix
18 lines
316 B
Nix
{ config, lib, pkgs, ... } :
|
|
with lib;
|
|
let
|
|
cfg = config.local.apps.messaging;
|
|
in
|
|
{
|
|
options.local.apps.messaging.enable = mkEnableOption "Messaging apps";
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
discord
|
|
signal-desktop
|
|
tdesktop
|
|
thunderbird
|
|
zoom-us
|
|
];
|
|
};
|
|
}
|