This repository has been archived on 2025-08-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
t14_legacy_config/home/apps/messaging.nix
Fabian Montero 2cf302a0bf checkpoint
2024-04-06 12:25:23 -06:00

13 lines
252 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; [
thunderbird
];
};
}