summary refs log tree commit diff
path: root/nixos/modules/services/x11/hardware
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-04-06 10:45:24 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-05-22 12:10:38 +0200
commitf4eb808554fa30869089aef288238486e91333e6 (patch)
treebd4dba39502d5e3597b8e7d267dad1306edb1ece /nixos/modules/services/x11/hardware
parentc4661e96434118637a5c41511a6c7f015726396f (diff)
downloadnixlib-f4eb808554fa30869089aef288238486e91333e6.tar
nixlib-f4eb808554fa30869089aef288238486e91333e6.tar.gz
nixlib-f4eb808554fa30869089aef288238486e91333e6.tar.bz2
nixlib-f4eb808554fa30869089aef288238486e91333e6.tar.lz
nixlib-f4eb808554fa30869089aef288238486e91333e6.tar.xz
nixlib-f4eb808554fa30869089aef288238486e91333e6.tar.zst
nixlib-f4eb808554fa30869089aef288238486e91333e6.zip
xf86-input-synaptics: split dev output
Diffstat (limited to 'nixos/modules/services/x11/hardware')
-rw-r--r--nixos/modules/services/x11/hardware/synaptics.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/hardware/synaptics.nix b/nixos/modules/services/x11/hardware/synaptics.nix
index 2981e7545e81..e74b19c8e710 100644
--- a/nixos/modules/services/x11/hardware/synaptics.nix
+++ b/nixos/modules/services/x11/hardware/synaptics.nix
@@ -169,10 +169,10 @@ in {
 
   config = mkIf cfg.enable {
 
-    services.xserver.modules = [ pkg ];
+    services.xserver.modules = [ pkg.out ];
 
     environment.etc."${etcFile}".source =
-      "${pkg}/share/X11/xorg.conf.d/50-synaptics.conf";
+      "${pkg.out}/share/X11/xorg.conf.d/50-synaptics.conf";
 
     environment.systemPackages = [ pkg ];