summary refs log tree commit diff
path: root/nixos/modules/services/desktops
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2014-05-21 10:55:10 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-05-21 13:40:35 +0200
commit7da235a9885b60539413a00d483037eec71f1ae4 (patch)
tree20c595c9613314c3724d20ecb3ebfd539a52693b /nixos/modules/services/desktops
parent265351051eca39dff4dabcb58548c1ec32b5c1f4 (diff)
downloadnixlib-7da235a9885b60539413a00d483037eec71f1ae4.tar
nixlib-7da235a9885b60539413a00d483037eec71f1ae4.tar.gz
nixlib-7da235a9885b60539413a00d483037eec71f1ae4.tar.bz2
nixlib-7da235a9885b60539413a00d483037eec71f1ae4.tar.lz
nixlib-7da235a9885b60539413a00d483037eec71f1ae4.tar.xz
nixlib-7da235a9885b60539413a00d483037eec71f1ae4.tar.zst
nixlib-7da235a9885b60539413a00d483037eec71f1ae4.zip
evolution-data-server: use the right gnome3 package set in the service
Diffstat (limited to 'nixos/modules/services/desktops')
-rw-r--r--nixos/modules/services/desktops/gnome3/evolution-data-server.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/modules/services/desktops/gnome3/evolution-data-server.nix b/nixos/modules/services/desktops/gnome3/evolution-data-server.nix
index a49b5b477689..a8f8da0eed56 100644
--- a/nixos/modules/services/desktops/gnome3/evolution-data-server.nix
+++ b/nixos/modules/services/desktops/gnome3/evolution-data-server.nix
@@ -4,6 +4,9 @@
 
 with lib;
 
+let
+  gnome3 = config.environment.gnome3.packageSet;
+in
 {
 
   ###### interface
@@ -30,9 +33,9 @@ with lib;
 
   config = mkIf config.services.gnome3.evolution-data-server.enable {
 
-    environment.systemPackages = [ pkgs.evolution_data_server ];
+    environment.systemPackages = [ gnome3.evolution_data_server ];
 
-    services.dbus.packages = [ pkgs.evolution_data_server ];
+    services.dbus.packages = [ gnome3.evolution_data_server ];
 
   };