summary refs log tree commit diff
path: root/nixos/modules/services/desktops/telepathy.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/desktops/telepathy.nix')
-rw-r--r--nixos/modules/services/desktops/telepathy.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/services/desktops/telepathy.nix b/nixos/modules/services/desktops/telepathy.nix
index 34596bf7818..b5f6a5fcbcf 100644
--- a/nixos/modules/services/desktops/telepathy.nix
+++ b/nixos/modules/services/desktops/telepathy.nix
@@ -38,6 +38,11 @@ with lib;
 
     services.dbus.packages = [ pkgs.telepathy-mission-control ];
 
+    # Enable runtime optional telepathy in gnome-shell
+    services.xserver.desktopManager.gnome.sessionPath = with pkgs; [
+      telepathy-glib
+      telepathy-logger
+    ];
   };
 
 }