Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
687 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
# Telepathy daemon.
{
config,
lib,
pkgs,
...
}:
{
meta = {
maintainers = [ ];
};
###### interface
options = {
services.telepathy = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Whether to enable Telepathy service, a communications framework
that enables real-time communication via pluggable protocol backends.
'';
};
};
};
###### implementation
config = lib.mkIf config.services.telepathy.enable {
environment.systemPackages = [ pkgs.telepathy-mission-control ];
services.dbus.packages = [ pkgs.telepathy-mission-control ];
};
}