t14_legacy_config/home/apps/messaging.nix

14 lines
252 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ 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; [
thunderbird
];
};
}