about summary refs log tree commit diff
path: root/home/profiles/messaging/default.nix
blob: a25f4e1f8e9b5996159989dc83246456a98d3a00 (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" ];
  };
}