blob: 76dc0fc1a72c6a2d2a62c15ba7e71ca60a796572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, lib, pkgs, ... }:
let cfg = config.profiles.messaging;
in
{
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" ];
};
}
|