summary refs log tree commit diff
path: root/nixos/modules/services/desktops/telepathy.nix
blob: 2554f3a1666fc9dd20cb8ce364b7cb3beb503eb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Telepathy daemon.

{ config, lib, pkgs, ... }:

with lib;

{

  ###### interface

  options = {

    services.telepathy = {

      enable = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Whether to enable Telepathy service, a communications framework
          that enables real-time communication via pluggable protocol backends.
        '';
      };

    };

  };


  ###### implementation

  config = mkIf config.services.telepathy.enable {

    environment.systemPackages = [ pkgs.telepathy_mission_control ];

    services.dbus.packages = [ pkgs.telepathy_mission_control ];

  };

}