blob: 0af65c94b865063ba892951f9a467216286b5325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ 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
];
};
}
|