blob: 46660b7d4d8398be766a7410b0b24e54d99d0bff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ 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
discord-canary
element-desktop
slack
weechat
];
nixpkgs.allowedUnfree = [ "discord-canary" "slack" ];
};
}
|