blob: 73a721ff455d4771ef7af5613a3050e49c23f2aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ 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; [ discord-canary aerc weechat element slack ];
nixpkgs.allowedUnfree = [ "discord-canary" "slack" ];
};
}
|