{ config, lib, pkgs, ... }: let cfg = config.profiles.messaging; in { imports = [ ../../modules/programs/nixpkgs ]; options.profiles.messaging = { enable = lib.mkEnableOption "A profile that enables the system to communicate via internet."; }; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ aerc element-desktop weechat ]; }; }